Skip to content

Commit

Permalink
default to queueing disabled (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmastech authored Dec 18, 2023
1 parent 0d4398a commit 2d3510d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AuditableObserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected function dispatchAudit(Auditable $model)
return;
}

if (!Config::get('audit.queue.enable', true)) {
if (!Config::get('audit.queue.enable', false)) {
return Auditor::execute($model);
}

Expand Down

0 comments on commit 2d3510d

Please sign in to comment.