mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
Added wrapping array() to args to improve compatibility with ruby resque
This commit is contained in:
parent
2a73e5b390
commit
f7eac3b5e7
@ -63,7 +63,7 @@ class Resque_Job
|
||||
$id = md5(uniqid('', true));
|
||||
Resque::push($queue, array(
|
||||
'class' => $class,
|
||||
'args' => $args,
|
||||
'args' => array($args),
|
||||
'id' => $id,
|
||||
));
|
||||
|
||||
@ -128,7 +128,7 @@ class Resque_Job
|
||||
return array();
|
||||
}
|
||||
|
||||
return $this->payload['args'];
|
||||
return array_shift($this->payload['args']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user