Skip to content

Commit 13ad404

Browse files
committed
Merge branch 'feat/hive-listener-integration' of https://github.com/stackabletech/hive-operator into feat/hive-listener-integration
2 parents 8637ecd + 8567a52 commit 13ad404

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust/operator-binary/src/discovery.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ fn build_listener_connection_string(
126126
.and_then(|s| s.ingress_addresses?.into_iter().next())
127127
.context(RoleListenerHasNoAddressSnafu { role })?;
128128
let mut conn_str = format!(
129-
"thrift://{}:{}",
130-
listener_address.address,
131-
listener_address
129+
"thrift://{address}:{port}",
130+
address = listener_address.address,
131+
port = listener_address
132132
.ports
133133
.get(HIVE_PORT_NAME)
134134
.copied()

0 commit comments

Comments
 (0)