Skip to content

Commit 2700956

Browse files
committed
Merge pull request #104 from CyrilMazur/master
Fixed $args in the Job::recreate method
2 parents 3f5937a + e4ea683 commit 2700956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Resque/Job.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public function recreate()
226226
$monitor = true;
227227
}
228228

229-
return self::create($this->queue, $this->payload['class'], $this->payload['args'], $monitor);
229+
return self::create($this->queue, $this->payload['class'], $this->getArguments(), $monitor);
230230
}
231231

232232
/**

0 commit comments

Comments
 (0)