mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
Update Job.php
Previous code was encapsulating $args in an additional array, and thus breaking the new job $args.
This commit is contained in:
parent
72c2afad59
commit
e4ea683def
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user