diff --git a/app/Jobs/InboxPipeline/InboxValidator.php b/app/Jobs/InboxPipeline/InboxValidator.php index 570bfe31..e38e0541 100644 --- a/app/Jobs/InboxPipeline/InboxValidator.php +++ b/app/Jobs/InboxPipeline/InboxValidator.php @@ -23,6 +23,9 @@ class InboxValidator implements ShouldQueue protected $headers; protected $payload; + public $timeout = 5; + public $tries = 1; + /** * Create a new job instance. * @@ -61,11 +64,9 @@ class InboxValidator implements ShouldQueue } if($this->verifySignature($headers, $profile, $payload) == true) { - dispatch(new \App\Jobs\InboxPipeline\InboxWorker($headers, $profile, $payload)); - return; + (new Inbox($headers, $profile, $payload))->handle() } else if($this->blindKeyRotation($headers, $profile, $payload) == true) { - dispatch(new \App\Jobs\InboxPipeline\InboxWorker($headers, $profile, $payload)); - return; + (new Inbox($headers, $profile, $payload))->handle() } else { return; }