Skip to content

Commit 258bebb

Browse files
committed
Merge branch '2.0.x' into 1.0.x
# Conflicts: # composer.json
2 parents 4ce45b4 + be70b66 commit 258bebb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"symfony/console": "~2 || ~3",
1313
"symfony/http-kernel": "~2 || ~3",
1414
"symfony/dependency-injection": "~2 || ~3",
15-
"code-tool/jaeger-client-php": "~1.5"
15+
"code-tool/jaeger-client-php": "~1.6"
1616
},
1717
"require-dev": {
1818
"php-ds/php-ds": "@stable",

src/Bridge/RequestSpanListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(\SplStack $stack, NameGeneratorInterface $nameGenera
3636
public static function getSubscribedEvents()
3737
{
3838
return [
39-
KernelEvents::REQUEST => ['onRequest', 8],
39+
KernelEvents::REQUEST => ['onRequest', 29],
4040
KernelEvents::RESPONSE => ['onResponse'],
4141
];
4242
}

src/Name/Generator/DefaultNameGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class DefaultNameGenerator implements NameGeneratorInterface, EventSubscriberInt
1515
public static function getSubscribedEvents()
1616
{
1717
return [
18-
KernelEvents::REQUEST => ['onRequest', 8],
19-
ConsoleEvents::COMMAND => ['onCommand', 8],
18+
KernelEvents::REQUEST => ['onRequest', 30],
19+
ConsoleEvents::COMMAND => ['onCommand', 30],
2020
KernelEvents::TERMINATE => ['onTerminate'],
2121
ConsoleEvents::TERMINATE => ['onTerminate'],
2222
];

0 commit comments

Comments
 (0)