mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
Merge pull request #21 from realestateconz/master
Ruby resque-web compatibility improvement
This commit is contained in:
commit
ea1ceed742
@ -63,7 +63,7 @@ class Resque_Job
|
|||||||
$id = md5(uniqid('', true));
|
$id = md5(uniqid('', true));
|
||||||
Resque::push($queue, array(
|
Resque::push($queue, array(
|
||||||
'class' => $class,
|
'class' => $class,
|
||||||
'args' => $args,
|
'args' => array($args),
|
||||||
'id' => $id,
|
'id' => $id,
|
||||||
));
|
));
|
||||||
|
|
||||||
@ -128,7 +128,7 @@ class Resque_Job
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->payload['args'];
|
return $this->payload['args'][0];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -248,4 +248,4 @@ class Resque_Job
|
|||||||
return '(' . implode(' | ', $name) . ')';
|
return '(' . implode(' | ', $name) . ')';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user