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 344385f commit 9760783Copy full SHA for 9760783
1 file changed
services/common/kafka/src/config.rs
@@ -25,5 +25,10 @@ pub(crate) fn set_defaults(config: &mut ClientConfig) {
25
.set(
26
"sasl.password",
27
env::var("POLYCENTRIC_KAFKA_SASL_PASSWORD").unwrap_or_default(),
28
+ )
29
+ .set(
30
+ "broker.address.family",
31
+ env::var("POLYCENTRIC_KAFKA_BROKER_ADDRESS_FAMILY")
32
+ .unwrap_or_else(|_| "any".to_string()),
33
);
34
}
0 commit comments