From 960adcdc5d13567ad55be5d46befd41ffc864ef2 Mon Sep 17 00:00:00 2001 From: Devin Kelley <105753233+devkelley@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:21:13 -0700 Subject: [PATCH] remove commented feature flag --- core/common/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/common/src/utils.rs b/core/common/src/utils.rs index bcfb818b..ac8cb4ac 100644 --- a/core/common/src/utils.rs +++ b/core/common/src/utils.rs @@ -186,7 +186,7 @@ pub async fn get_service_uri( /// # Arguments /// * `uri` - The uri to potentially modify. pub fn get_uri(uri: &str) -> Result { - //#[cfg(feature = "containerize")] + #[cfg(feature = "containerize")] let uri = { // Container env variable names. const HOST_GATEWAY_ENV_VAR: &str = "HOST_GATEWAY";