changed job connections to redis rather than database

This commit is contained in:
2019-05-14 13:25:57 -05:00
parent ef7fc8173b
commit a9e338ba72
3 changed files with 6 additions and 0 deletions

View File

@@ -43,6 +43,8 @@ class ProcessWalletJournalJob implements ShouldQueue
$this->division = $pwj->division;
$this->charId = $pwj->charId;
$this->page = $pwj->page;
$this->connection = 'redis';
}
/**

View File

@@ -43,6 +43,8 @@ class ProcessWalletTransactionJob implements ShouldQueue
{
$this->division = $pwt->division;
$this->charId = $pwt->charId;
$this->connection = 'redis';
}
/**

View File

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