Browse Source

Merge pull request #1721 from zackkitzmiller/patch-1

Default queue should be synchronous.
Taylor Otwell 11 years ago
parent
commit
45f4de147f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/config/queue.php

+ 2 - 2
app/config/queue.php

@@ -15,7 +15,7 @@ return array(
 	|
 	|
 	*/
 	*/
 
 
-	'default' => 'sqs',
+	'default' => 'sync',
 
 
 	/*
 	/*
 	|--------------------------------------------------------------------------
 	|--------------------------------------------------------------------------
@@ -50,4 +50,4 @@ return array(
 
 
 	),
 	),
 
 
-);
+);