From a9e338ba721bddcc6ea360eff94821fbfaa10f7b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Tue, 14 May 2019 13:25:57 -0500 Subject: [PATCH] changed job connections to redis rather than database --- app/Jobs/ProcessWalletJournalJob.php | 2 ++ app/Jobs/ProcessWallettransactionJob.php | 2 ++ app/Jobs/SendEveMailJob.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/app/Jobs/ProcessWalletJournalJob.php b/app/Jobs/ProcessWalletJournalJob.php index 22745a3f4..ce2414a68 100644 --- a/app/Jobs/ProcessWalletJournalJob.php +++ b/app/Jobs/ProcessWalletJournalJob.php @@ -43,6 +43,8 @@ class ProcessWalletJournalJob implements ShouldQueue $this->division = $pwj->division; $this->charId = $pwj->charId; $this->page = $pwj->page; + + $this->connection = 'redis'; } /** diff --git a/app/Jobs/ProcessWallettransactionJob.php b/app/Jobs/ProcessWallettransactionJob.php index aea5a2d31..7a0b4940a 100644 --- a/app/Jobs/ProcessWallettransactionJob.php +++ b/app/Jobs/ProcessWallettransactionJob.php @@ -43,6 +43,8 @@ class ProcessWalletTransactionJob implements ShouldQueue { $this->division = $pwt->division; $this->charId = $pwt->charId; + + $this->connection = 'redis'; } /** diff --git a/app/Jobs/SendEveMailJob.php b/app/Jobs/SendEveMailJob.php index 57a0604de..572662ca6 100644 --- a/app/Jobs/SendEveMailJob.php +++ b/app/Jobs/SendEveMailJob.php @@ -55,6 +55,8 @@ class SendEveMailJob implements ShouldQueue $this->recipient = $mail->recipient; $this->recipient_type = $mail->recipient_type; $this->subject = $mail->subject; + + $this->connection = 'redis'; } /**