We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95ff373 + f5aa175 commit 315c226Copy full SHA for 315c226
src/Resources/DependencyInjection/ExtractorChainCompilerPass.php
@@ -20,11 +20,6 @@ public function process(ContainerBuilder $container)
20
$definition = $container->getDefinition('jaeger.context.extractor.chain');
21
foreach ($container->findTaggedServiceIds('jaeger.context.extractor') as $id => $tags) {
22
foreach ($tags as $tag) {
23
- if (false === array_key_exists('alias', $tag)) {
24
- throw new \RuntimeException(
25
- sprintf('Required tag field %s is missing from definition', 'alias')
26
- );
27
- }
28
$priority = $tag['priority'] ?? 0;
29
$definition->addMethodCall('add', [new Reference($id), $priority]);
30
}
0 commit comments