From f20ab2cac52ec69d19846f602a577c59dce817dc Mon Sep 17 00:00:00 2001 From: Jaisen Mathai Date: Fri, 1 Oct 2010 00:52:27 -0700 Subject: [PATCH] Fixing a typo where args was not being set properly. Fixing some typos in the README and added troubleshooting. --- README.markdown | 17 ++++++++++++++--- lib/Resque/Job.php | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 7a19252..d300b4c 100644 --- a/README.markdown +++ b/README.markdown @@ -171,7 +171,7 @@ checked in. As per the original example: - $ QUEUES=file_serve,warm_cache php resque.php + $ QUEUE=file_serve,warm_cache php resque.php The `file_serve` queue will always be checked for new jobs on each iteration before the `warm_cache` queue is checked. @@ -181,7 +181,7 @@ iteration before the `warm_cache` queue is checked. All queues are supported in the same manner and processed in alphabetical order: - $ QUEUES=* php resque.php + $ QUEUE=* php resque.php ### Running Multiple Workers ### @@ -223,4 +223,15 @@ their resque status. A PECL module () exists that adds this funcitonality to PHP, so if you'd like process titles updated, -install the PECL module as well. php-resque will detect and use it. \ No newline at end of file +install the PECL module as well. php-resque will detect and use it. + +### Errors and troubleshooting ### + +**php.ini settings** + +If you don't have E in variables_order you can specify @-c ./@ as an +option to the PHP cli program. This reverts values to the defaults which +include E. + + $ QUEUE=file_serve php -c ./ resque.php + diff --git a/lib/Resque/Job.php b/lib/Resque/Job.php index 2831bf4..c25382c 100644 --- a/lib/Resque/Job.php +++ b/lib/Resque/Job.php @@ -131,7 +131,7 @@ class Resque_Job } $instance = new $this->payload['class']; - $isntance->args = $this->payload['args']; + $instance->args = $this->payload['args']; if(method_exists($instance, 'setUp')) { $instance->setUp();