diff --git a/app/Jobs/InboxPipeline/InboxValidator.php b/app/Jobs/InboxPipeline/InboxValidator.php index 54cf7334..718c7304 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; }