Skip to content

Commit 04ce72a

Browse files
committed
Fixed priorities
1 parent bcca9e2 commit 04ce72a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Bridge/AppStartSpanListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getStartTime(Request $request): int
2727
public static function getSubscribedEvents()
2828
{
2929
return [
30-
KernelEvents::REQUEST => ['onRequest'],
30+
KernelEvents::REQUEST => ['onRequest', -1],
3131
];
3232
}
3333

src/Bridge/RequestSpanListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public function __construct(\SplStack $stack, TracerInterface $tracer)
3232
public static function getSubscribedEvents()
3333
{
3434
return [
35-
KernelEvents::REQUEST => ['onRequest', -1],
36-
KernelEvents::RESPONSE => ['onResponse', -1],
35+
KernelEvents::REQUEST => ['onRequest'],
36+
KernelEvents::RESPONSE => ['onResponse'],
3737
];
3838
}
3939

0 commit comments

Comments
 (0)