chrisboulton / php-resque

PHP port of resque (Workers and Queueing)
MIT License
3.43k stars 759 forks source link

Resque Jobs are displaying the status as Private #233

Open iamcharlesb opened 9 years ago

iamcharlesb commented 9 years ago

My resque jobs are showing the status as "Private" and not getting executed but they are displayed while giving the command "redis-cli keys :job:". Please let me know what could be the reason behind this issue?

Here is the response [54eb1d3cd43cd] => Resque_Job_Status Object ( [id:Resque_Job_Status:private] => 4992e2eddd487e859ef3b35f337eea07 [isTracking:Resque_Job_Status:private] => )

Also found that the logs are not created while starting the resque service.

Please give me a suggestion to resolve this issue.

nahitheper commented 8 years ago

Would you try this $token = Resque::enqueue('cms39', 'MyRedisClass', $args); to

$token = Resque::enqueue('cms39', 'MyRedisClass', $args, true);