php-resque icon indicating copy to clipboard operation
php-resque copied to clipboard

Resque Jobs are displaying the status as Private

Open iamcharlesb opened this issue 10 years ago • 1 comments

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.

iamcharlesb avatar Feb 23 '15 14:02 iamcharlesb

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

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

nahitheper avatar Jan 15 '16 10:01 nahitheper