updated some horizon files

This commit is contained in:
2019-05-14 00:30:00 -05:00
parent c36e49c7df
commit a3bafa610f
4 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ class CalculateMarketTaxCommand extends Command
'<br>Please remit to Spatial Forces';
$mail->recipient = (int)$info->character_id;
$mail->recipient_type = 'character';
SendEveMailJob::dispatch($mail);
SendEveMailJob::dispatch($mail)->onQueue('default');
}
}

View File

@@ -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');
}
}
}

View File

@@ -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);

View File

@@ -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();