mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 05:32:20 +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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue