Skip to content

Instantly share code, notes, and snippets.

@millar
Created July 22, 2015 15:24
Show Gist options
  • Save millar/7623263c5962d2f79479 to your computer and use it in GitHub Desktop.
Save millar/7623263c5962d2f79479 to your computer and use it in GitHub Desktop.
Disable local queues config
<?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