🐛 change queue error mode to 'abort'
This commit is contained in:
parent
aa8d25d5ed
commit
60dd218688
2 changed files with 11 additions and 11 deletions
|
@ -29,21 +29,21 @@ class QueueHelper {
|
|||
'type' => 'SqlParallel',
|
||||
'is_autorun' => FALSE,
|
||||
'reset' => FALSE,
|
||||
'error' => 'drop',
|
||||
'error' => 'abort',
|
||||
]);
|
||||
$this->eventQueue = \Civi::queue(
|
||||
'propeace-mailinglist-event-queue', [
|
||||
'type' => 'SqlParallel',
|
||||
'is_autorun' => FALSE,
|
||||
'reset' => FALSE,
|
||||
'error' => 'drop',
|
||||
'error' => 'abort',
|
||||
]);
|
||||
$this->emailQueue = \Civi::queue(
|
||||
'propeace-mailinglist-email-queue', [
|
||||
'type' => 'SqlParallel',
|
||||
'is_autorun' => FALSE,
|
||||
'reset' => FALSE,
|
||||
'error' => 'drop',
|
||||
'error' => 'abort',
|
||||
]);
|
||||
|
||||
$this->groups = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue