From fc7b65b1935232af50a8e03e9ef680a68ec41900 Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Thu, 23 Oct 2025 10:58:45 -0400 Subject: [PATCH] nit: also log force ipv4 in configure_client (#6924) --- backend/windmill-common/src/utils.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/windmill-common/src/utils.rs b/backend/windmill-common/src/utils.rs index 01a5dd6a93..174d3cd261 100644 --- a/backend/windmill-common/src/utils.rs +++ b/backend/windmill-common/src/utils.rs @@ -193,6 +193,7 @@ pub fn require_admin(is_admin: bool, username: &str) -> Result<()> { /// to only use IPv4 addresses by binding to 0.0.0.0 pub fn configure_client(builder: reqwest::ClientBuilder) -> reqwest::ClientBuilder { if *FORCE_IPV4 { + tracing::info!("FORCE_IPV4 is enabled - HTTP client will only use IPv4"); builder.local_address(std::net::IpAddr::V4(std::net::Ipv4Addr::new(0, 0, 0, 0))) } else { builder