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.
2 parents 8637ecd + 8567a52 commit 13ad404Copy full SHA for 13ad404
rust/operator-binary/src/discovery.rs
@@ -126,9 +126,9 @@ fn build_listener_connection_string(
126
.and_then(|s| s.ingress_addresses?.into_iter().next())
127
.context(RoleListenerHasNoAddressSnafu { role })?;
128
let mut conn_str = format!(
129
- "thrift://{}:{}",
130
- listener_address.address,
131
- listener_address
+ "thrift://{address}:{port}",
+ address = listener_address.address,
+ port = listener_address
132
.ports
133
.get(HIVE_PORT_NAME)
134
.copied()
0 commit comments