Skip to content

Commit 7ff621d

Browse files
committed
Fixed priorities
1 parent 36c3385 commit 7ff621d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Bridge/BackgroundFinishListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function __construct(BackgroundSpanHandler $handler)
1717

1818
public static function getSubscribedEvents()
1919
{
20-
return [KernelEvents::TERMINATE => ['onTerminate', -4096],];
20+
return [KernelEvents::TERMINATE => ['onTerminate', -16384],];
2121
}
2222

2323
public function onTerminate()

src/Bridge/BackgroundStartListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(BackgroundSpanHandler $handler)
1818

1919
public static function getSubscribedEvents()
2020
{
21-
return [KernelEvents::TERMINATE => ['onTerminate', 4096],];
21+
return [KernelEvents::TERMINATE => ['onTerminate', 16384],];
2222
}
2323

2424
public function onTerminate(PostResponseEvent $event)

src/Bridge/GlobalSpanListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static function getSubscribedEvents()
3333
{
3434
return [
3535
KernelEvents::REQUEST => ['onRequest', 30],
36-
KernelEvents::TERMINATE => ['onTerminate', -16384],
36+
KernelEvents::TERMINATE => ['onTerminate', 4096],
3737
];
3838
}
3939

0 commit comments

Comments
 (0)