mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 21:52:21 +00:00
Merge pull request #104 from CyrilMazur/master
Fixed $args in the Job::recreate method
This commit is contained in:
commit
2700956e73
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class Resque_Job
|
|||
$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