You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-3662: Support Kafka 3.9.0+ in EmbeddedKafkaKraftBroker
Fixes: #3662
Issue: #3662
Add compatibility for both Kafka 3.8.0 and 3.9.0+ by handling different method signatures for setConfigProp:
- 3.9.0+: setConfigProp(String, Object)
- 3.8.0: setConfigProp(String, String)
The change uses reflection to detect Kafka version and call appropriate method.
* Direct call to setConfigProp when using 3.8.0
* Addressing PR review
* Addressing PR review
0 commit comments