Closed josephdpurcell closed 10 years ago
I'm now wondering if this is a duplicate of: https://github.com/michelsalib/BCCResqueBundle/issues/82
It looks like this is in fact a duplicate of #82.
The cause was I didn't have php-redis installed. I'm on Ubuntu 14.04 so my fix was:
sudo apt-get install php5-redis
Closing this issue.
When I start the scheduled worker like so:
I receive the following error:
I don't know if this is an issue with BCC, Chris Boulton's resque-scheduler, or Colin Mollenhour's "credis" lib. I noticed in
vendor/chrisboulton/php-resque-scheduler/lib/ResqueScheduler.php
on line 228 it has the following:This then gets run through an array_map in "credis" here: https://github.com/colinmollenhour/credis/blob/master/Client.php#L1086-L1089
Which, means that $arg that gets passed to
_map
isarray('limit' => array(0, 1))
, which then the code attempts to take an strlen of it on 1036:I'm using PHP 5.5.9.
Any suggestions on what I should do / where I should go to contribute a fix?