Ver código fonte

Update InboxValidator

Daniel Supernault 5 anos atrás
pai
commit
011e2c964c
1 arquivos alterados com 5 adições e 4 exclusões
  1. 5 4
      app/Jobs/InboxPipeline/InboxValidator.php

+ 5 - 4
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;
         }