Skip to content

Commit 1230c52

Browse files
committed
Merge branch '2.0.x'
2 parents 791aa67 + bcca9e2 commit 1230c52

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Bridge/ContextInjector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public function __construct(
4949
public static function getSubscribedEvents()
5050
{
5151
return [
52-
ConsoleEvents::COMMAND => ['onCommand'],
53-
KernelEvents::REQUEST => ['onRequest'],
52+
ConsoleEvents::COMMAND => ['onCommand', 1000],
53+
KernelEvents::REQUEST => ['onRequest', 1000],
5454
];
5555
}
5656

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', -1],
36+
KernelEvents::RESPONSE => ['onResponse', -1],
3737
];
3838
}
3939

0 commit comments

Comments
 (0)