From 192c8d6e1e19ef95ce070cadc983b77a00d70252 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Fri, 3 May 2019 23:36:21 -0500 Subject: [PATCH] corp journal job added to cron for testing --- app/Jobs/ProcessWalletJournalJob.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/app/Jobs/ProcessWalletJournalJob.php b/app/Jobs/ProcessWalletJournalJob.php index 9fdd2e489..59cc5fc65 100644 --- a/app/Jobs/ProcessWalletJournalJob.php +++ b/app/Jobs/ProcessWalletJournalJob.php @@ -25,14 +25,7 @@ class ProcessWalletJournalJob implements ShouldQueue * @var int */ public $timeout = 600; - - /** - * Delay time for job - * - * @var int - */ - public $delay = 15; - + /** * Create a new job instance. * @@ -40,6 +33,8 @@ class ProcessWalletJournalJob implements ShouldQueue */ public function __construct(JobModel $pwj) { $this->pwj = $pwj; + $this->delay = 15; + $this->connection = 'database'; } /**