From 006e37a2b7d7689861f3f429b746912dd8a2a93f Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Wed, 18 Sep 2024 12:41:17 +0200 Subject: [PATCH] Update crates/stackable-operator/src/commons/networking.rs Co-authored-by: Techassi --- crates/stackable-operator/src/commons/networking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stackable-operator/src/commons/networking.rs b/crates/stackable-operator/src/commons/networking.rs index 1fb97c09d..598ac6305 100644 --- a/crates/stackable-operator/src/commons/networking.rs +++ b/crates/stackable-operator/src/commons/networking.rs @@ -53,7 +53,7 @@ impl Deref for DomainName { #[derive(Debug, Snafu)] pub enum HostNameParseError { #[snafu(display( - "the given hostname '{hostname}' is not a valid hostname, which needs to be either a domain name or IP address" + "the given hostname {hostname:?} is not a valid hostname, which needs to be either a domain name or IP address" ))] InvalidHostname { hostname: String }, }