From 1fb3e1dd6b99186dd4e8d1a45616b07b2bfc217a Mon Sep 17 00:00:00 2001 From: Abishek R Srikaanth Date: Fri, 18 Oct 2013 07:23:00 +0530 Subject: [PATCH 1/3] Added configuration for RedisQueue --- app/config/queue.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/config/queue.php b/app/config/queue.php index 220998cb..a76c63ee 100644 --- a/app/config/queue.php +++ b/app/config/queue.php @@ -55,6 +55,12 @@ 'queue' => 'your-queue-name', ), + 'redis' => array( + 'driver' => 'redis', + 'host' => 'localhost', + 'queue' => 'default' + ), + ), ); From dae1a994c9e20c630e7ac812d4c58969100d38eb Mon Sep 17 00:00:00 2001 From: Abishek R Srikaanth Date: Fri, 18 Oct 2013 22:22:50 +0530 Subject: [PATCH 2/3] Removed the host config for the redis queue --- app/config/queue.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/config/queue.php b/app/config/queue.php index a76c63ee..73a1b145 100644 --- a/app/config/queue.php +++ b/app/config/queue.php @@ -57,7 +57,6 @@ 'redis' => array( 'driver' => 'redis', - 'host' => 'localhost', 'queue' => 'default' ), From 4b09f4061c873636ec3a207bf04c1e17209dca3b Mon Sep 17 00:00:00 2001 From: Abishek R Srikaanth Date: Fri, 18 Oct 2013 22:44:07 +0530 Subject: [PATCH 3/3] Put a comma after option just to match the other arrays --- app/config/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/queue.php b/app/config/queue.php index 73a1b145..32cbabcb 100644 --- a/app/config/queue.php +++ b/app/config/queue.php @@ -57,7 +57,7 @@ 'redis' => array( 'driver' => 'redis', - 'queue' => 'default' + 'queue' => 'default', ), ),