Updated recreate method in Resque_Job class to set arguments in the same fashion as getAruments returns them.

This commit is contained in:
Allen Torres 2012-11-01 09:28:47 -04:00
parent 3314d407eb
commit 3955bc8edc

View File

@ -231,7 +231,7 @@ class Resque_Job
$monitor = true; $monitor = true;
} }
return self::create($this->queue, $this->payload['class'], $this->payload['args'], $monitor); return self::create($this->queue, $this->payload['class'], $this->payload['args'][0], $monitor);
} }
/** /**