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.
RoleListenerHasNoAddress
1 parent 43d5e38 commit ff4e092Copy full SHA for ff4e092
1 file changed
rust/operator-binary/src/discovery.rs
@@ -37,7 +37,7 @@ pub enum Error {
37
source: stackable_operator::builder::meta::Error,
38
},
39
#[snafu(display("{role} listener has no adress"))]
40
- RoleGroupListenerHasNoAddress { role: String },
+ RoleListenerHasNoAddress { role: String },
41
}
42
43
/// Builds discovery [`ConfigMap`]s for connecting to a [`v1alpha1::HiveCluster`] for all expected
@@ -124,7 +124,7 @@ fn build_listener_connection_string(
124
let listener_address = listener_ref
125
.status
126
.and_then(|s| s.ingress_addresses?.into_iter().next())
127
- .context(RoleGroupListenerHasNoAddressSnafu { role })?;
+ .context(RoleListenerHasNoAddressSnafu { role })?;
128
let mut conn_str = format!(
129
"thrift://{}:{}",
130
listener_address.address,
0 commit comments