From c82009bd423bc77483fd02b05aecade5fe517f3d Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Fri, 29 May 2026 16:39:53 +0200 Subject: [PATCH] fix: Fix compile error in Docker build We were failing to compile in our Docker release build step due to this function being called when not compiled in. --- src/api/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/mod.rs b/src/api/mod.rs index 4cb294e919..b52d4cc4e0 100644 --- a/src/api/mod.rs +++ b/src/api/mod.rs @@ -1374,7 +1374,6 @@ impl ApiRequest { } /// enables or disables redirects. The default is off. - #[cfg(any(target_os = "macos", not(feature = "managed")))] pub fn follow_location(mut self, val: bool) -> ApiResult { debug!("follow redirects: {val}"); self.handle.follow_location(val)?;