Skip to content

Commit

Permalink
temporarily disable env vars to test if integration test fails - REVE…
Browse files Browse the repository at this point in the history
…RT ME
  • Loading branch information
cbartz committed Sep 5, 2024
1 parent f8207a7 commit e0dca27
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/openstack_cloud/openstack_runner_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e0dca27

Please sign in to comment.