diff --git a/app/Console/Commands/calculatemarkettax.php b/app/Console/Commands/calculatemarkettax.php index c42d5bcfe..b3686f896 100644 --- a/app/Console/Commands/calculatemarkettax.php +++ b/app/Console/Commands/calculatemarkettax.php @@ -95,7 +95,7 @@ class CalculateMarketTaxCommand extends Command '
Please remit to Spatial Forces'; $mail->recipient = (int)$info->character_id; $mail->recipient_type = 'character'; - SendEveMailJob::dispatch($mail); + SendEveMailJob::dispatch($mail)->onQueue('default'); } } diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index 624e2d855..061af0367 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); + ProcessWalletJournalJob::dispatch($job)->onQueue('default'); } } } diff --git a/app/Console/Commands/moonmailer.php b/app/Console/Commands/moonmailer.php index 8664c5268..45ddb8c81 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); + SendEveMailJob::dispatch($mail)->onQueue('default'); //After the mail is dispatched, saved the sent mail record $this->SaveSentRecord($mail->sender, $mail->subject, $mail->body, $mail->recipient, $mail->recipient_type); diff --git a/app/Console/Commands/pitransactions.php b/app/Console/Commands/pitransactions.php index f16a364ff..0f1e2b706 100644 --- a/app/Console/Commands/pitransactions.php +++ b/app/Console/Commands/pitransactions.php @@ -59,7 +59,7 @@ class PiTransactionsCommand extends Command $job = new JobProcessWalletTransaction; $job->division = 3; $job->charId = 94415555; - ProcessWalletTransactionJob::dispatch($job); + ProcessWalletTransactionJob::dispatch($job)->onQueue('default'); //Mark the job as finished $task->SetStopStatus();