Skip to content

Commit 39bdae4

Browse files
committed
Adding test for recursive configuration merging
1 parent bef59d4 commit 39bdae4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pkg/rdkafka/Tests/RdKafkaConnectionFactoryTest.php

Lines changed: 14 additions & 0 deletions
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)