Merge pull request #104 from CyrilMazur/master

Fixed $args in the Job::recreate method
This commit is contained in:
Chris Boulton 2013-05-11 22:13:11 -07:00
commit 2700956e73

View File

@ -226,7 +226,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->getArguments(), $monitor);
} }
/** /**