Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 63f2bc6

Browse files
authored
fix(worker): add missing exceptions param when calling parent constructor
1 parent e0c2994 commit 63f2bc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Worker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(QueueManager $manager,
3939
$rateLimiter,
4040
$logger)
4141
{
42-
parent::__construct($manager, $events, $isDownForMaintenance);
42+
parent::__construct($manager, $events, $exceptions, $isDownForMaintenance);
4343

4444
$this->rateLimits = $rateLimits ?? [];
4545
$this->rateLimiter = $rateLimiter;

0 commit comments

Comments
 (0)