Skip to content

Commit 79911f3

Browse files
committed
Merge branch '2.0.x' into 1.0.x
2 parents e9f38f0 + 04ce72a commit 79911f3

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
@@ -30,7 +30,7 @@ public function getStartTime(Request $request)
3030
public static function getSubscribedEvents()
3131
{
3232
return [
33-
KernelEvents::REQUEST => ['onRequest'],
33+
KernelEvents::REQUEST => ['onRequest', -1],
3434
];
3535
}
3636

src/Bridge/RequestSpanListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public function __construct(\SplStack $stack, TracerInterface $tracer)
3030
public static function getSubscribedEvents()
3131
{
3232
return [
33-
KernelEvents::REQUEST => ['onRequest', -1],
34-
KernelEvents::RESPONSE => ['onResponse', -1],
33+
KernelEvents::REQUEST => ['onRequest'],
34+
KernelEvents::RESPONSE => ['onResponse'],
3535
];
3636
}
3737

0 commit comments

Comments
 (0)