avoid working with dirty worker ids

This commit is contained in:
Salimane Adjao Moustapha 2012-02-02 15:49:59 +08:00
parent 4700375d25
commit 5b24b471dc

View File

@ -95,7 +95,7 @@ class Resque_Worker
*/ */
public static function find($workerId) public static function find($workerId)
{ {
if(!self::exists($workerId)) { if(!self::exists($workerId) || false === strpos($workerId, ":")) {
return false; return false;
} }
@ -447,12 +447,14 @@ class Resque_Worker
$workerPids = $this->workerPids(); $workerPids = $this->workerPids();
$workers = self::all(); $workers = self::all();
foreach($workers as $worker) { foreach($workers as $worker) {
list($host, $pid, $queues) = explode(':', (string)$worker, 3); if (is_object($worker)) {
if($host != $this->hostname || in_array($pid, $workerPids) || $pid == getmypid()) { list($host, $pid, $queues) = explode(':', (string)$worker, 3);
continue; if($host != $this->hostname || in_array($pid, $workerPids) || $pid == getmypid()) {
} continue;
$this->log('Pruning dead worker: ' . (string)$worker, self::LOG_VERBOSE); }
$worker->unregisterWorker(); $this->log('Pruning dead worker: ' . (string)$worker, self::LOG_VERBOSE);
$worker->unregisterWorker();
}
} }
} }