|
@@ -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;
|
|
|
}
|