From 0e7f2bd0be4f1cbbdaf53562f66e91fe28c66999 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 9 Jun 2019 19:16:37 -0600 Subject: [PATCH] Update InboxValidator job --- app/Jobs/InboxPipeline/InboxValidator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/InboxPipeline/InboxValidator.php b/app/Jobs/InboxPipeline/InboxValidator.php index 54cf73348..718c73040 100644 --- a/app/Jobs/InboxPipeline/InboxValidator.php +++ b/app/Jobs/InboxPipeline/InboxValidator.php @@ -57,9 +57,9 @@ class InboxValidator implements ShouldQueue } if($this->verifySignature($headers, $profile, $payload) == true) { - InboxWorker::dispatch($headers, $profile, $payload); + InboxWorker::dispatchNow($headers, $profile, $payload)->onQueue('high'); } else if($this->blindKeyRotation($headers, $profile, $payload) == true) { - InboxWorker::dispatch($headers, $profile, $payload); + InboxWorker::dispatchNow($headers, $profile, $payload)->onQueue('high'); } else { return; }