We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef06874 commit 1bea82fCopy full SHA for 1bea82f
1 file changed
src/Exception.php
@@ -13,7 +13,6 @@
13
use Illuminate\Support\Facades\Cache;
14
use Throwable;
15
use Workflow\Exceptions\TransitionNotFound;
16
-use Workflow\Middleware\WithoutOverlappingMiddleware;
17
use Workflow\Models\StoredWorkflow;
18
use Workflow\Models\StoredWorkflowLog;
19
use Workflow\Serializers\Serializer;
@@ -82,14 +81,7 @@ public function handle()
82
81
83
public function middleware()
84
{
85
- return [
86
- new WithoutOverlappingMiddleware(
87
- $this->storedWorkflow->id,
88
- WithoutOverlappingMiddleware::ACTIVITY,
89
- 0,
90
- 15
91
- ),
92
- ];
+ return [];
93
}
94
95
private function shouldPersistAfterProbeReplay(): bool
0 commit comments