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.
1 parent 75efc40 commit f609bc8Copy full SHA for f609bc8
pkg/rdkafka/Symfony/RdKafkaTransportFactory.php
@@ -39,14 +39,17 @@ public function addConfiguration(ArrayNodeDefinition $builder)
39
return ['dsn' => $v];
40
})
41
->end()
42
- ->fixXmlConfig('topic')
43
->children()
44
->scalarNode('dsn')
45
->info('The kafka DSN. Other parameters are ignored if set')
46
47
- ->variableNode('global')->defaultValue([])->end()
48
- ->arrayNode('topics')
49
- ->prototype('scalar')->end()
+ ->variableNode('global')
+ ->defaultValue([])
+ ->info('The kafka global configuration properties')
+ ->end()
50
+ ->variableNode('topic')
51
52
+ ->info('The kafka topic configuration properties')
53
54
->scalarNode('dr_msg_cb')
55
->info('Delivery report callback')
0 commit comments