Skip to content

Commit e9f38f0

Browse files
committed
Merge branch '2.0.x' into 1.0.x
2 parents b0fc0e6 + bcca9e2 commit e9f38f0

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
@@ -47,8 +47,8 @@ public function __construct(
4747
public static function getSubscribedEvents()
4848
{
4949
return [
50-
ConsoleEvents::COMMAND => ['onCommand'],
51-
KernelEvents::REQUEST => ['onRequest'],
50+
ConsoleEvents::COMMAND => ['onCommand', 1000],
51+
KernelEvents::REQUEST => ['onRequest', 1000],
5252
];
5353
}
5454

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', -1],
34+
KernelEvents::RESPONSE => ['onResponse', -1],
3535
];
3636
}
3737

0 commit comments

Comments
 (0)