diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index 061af0367..624e2d855 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -79,7 +79,7 @@ class CorpJournalCommand extends Command $job->division = 1; $job->charId = $structure->character_id; $job->page = $i; - ProcessWalletJournalJob::dispatch($job)->onQueue('default'); + ProcessWalletJournalJob::dispatch($job); } } } diff --git a/app/Console/Commands/holdingfinances.php b/app/Console/Commands/holdingfinances.php index af0e8152e..b83f2dec1 100644 --- a/app/Console/Commands/holdingfinances.php +++ b/app/Console/Commands/holdingfinances.php @@ -64,7 +64,7 @@ class HoldingFinancesCommand extends Command $job->division = 1; $job->charId = 93738489; $job->page = $i; - ProcessWalletJournalJob::dispatch($job)->onQueue('default'); + ProcessWalletJournalJob::dispatch($job); } //Mark the job as finished diff --git a/app/Console/Commands/moonmailer.php b/app/Console/Commands/moonmailer.php index 45ddb8c81..0132f3a40 100644 --- a/app/Console/Commands/moonmailer.php +++ b/app/Console/Commands/moonmailer.php @@ -106,7 +106,7 @@ class MoonMailerCommand extends Command $mail->body = $body; $mail->recipient = (int)$contact; $mail->recipient_type = 'character'; - SendEveMailJob::dispatch($mail)->onQueue('default'); + SendEveMailJob::dispatch($mail)->onQueue('mail'); //After the mail is dispatched, saved the sent mail record $this->SaveSentRecord($mail->sender, $mail->subject, $mail->body, $mail->recipient, $mail->recipient_type);