Skip to content

Commit

Permalink
Disable queue by default (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 committed Dec 31, 2023
1 parent 66498a9 commit b184eb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/audit.php
Expand Up @@ -166,7 +166,7 @@
*/

'queue' => [
'enable' => true,
'enable' => false,
'connection' => 'sync',
'queue' => 'default',
'delay' => 0,
Expand Down
1 change: 1 addition & 0 deletions tests/AuditingTestCase.php
Expand Up @@ -43,6 +43,7 @@ protected function getEnvironmentSetUp($app)
$app['config']->set('audit.resolvers.user_agent', UserAgentResolver::class);
$app['config']->set('audit.console', true);
$app['config']->set('audit.empty_values', true);
$app['config']->set('audit.queue.enable', true);
}

/**
Expand Down

0 comments on commit b184eb1

Please sign in to comment.