Created
July 22, 2015 15:24
-
-
Save millar/7623263c5962d2f79479 to your computer and use it in GitHub Desktop.
Disable local queues config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// app/config/local/queue.php | |
return array( | |
// 'default' => 'iron', | |
// 'default' => 'sync', // Use syncronous for testing without and internet connection... | |
'connections' => array( | |
'sync' => array( | |
'driver' => 'sync', | |
), | |
'sqs' => array( | |
'driver' => 'sync', | |
), | |
'iron' => array( | |
'driver' => 'sync', | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment