Skip to content

Commit e17743a

Browse files
committed
Adding test for recursive configuration merging
1 parent 32a6915 commit e17743a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Tests/RdKafkaConnectionFactoryTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,19 @@ public static function provideConfigs()
107107
],
108108
],
109109
];
110+
111+
yield [
112+
[
113+
'global' => [
114+
'group.id' => 'group-id',
115+
],
116+
],
117+
[
118+
'global' => [
119+
'metadata.broker.list' => 'localhost:9092',
120+
'group.id' => 'group-id',
121+
],
122+
],
123+
];
110124
}
111125
}

0 commit comments

Comments
 (0)