diff --git a/src/openstack_cloud/openstack_runner_manager.py b/src/openstack_cloud/openstack_runner_manager.py index 11bac0b92..4d5f91633 100644 --- a/src/openstack_cloud/openstack_runner_manager.py +++ b/src/openstack_cloud/openstack_runner_manager.py @@ -150,13 +150,13 @@ def __init__( # pylint: disable=R0913 ) # Setting the env var to this process and any child process spawned. - proxies = service_config.proxy_config - if no_proxy := proxies.no_proxy: - set_env_var("NO_PROXY", no_proxy) - if http_proxy := proxies.http: - set_env_var("HTTP_PROXY", http_proxy) - if https_proxy := proxies.https: - set_env_var("HTTPS_PROXY", https_proxy) + # proxies = service_config.proxy_config + # if no_proxy := proxies.no_proxy: + # set_env_var("NO_PROXY", no_proxy) + # if http_proxy := proxies.http: + # set_env_var("HTTP_PROXY", http_proxy) + # if https_proxy := proxies.https: + # set_env_var("HTTPS_PROXY", https_proxy) @property def name_prefix(self) -> str: