Skip to content

Commit

Permalink
chore: Fixed trying to set Url as environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
alithethird committed Aug 28, 2024
1 parent 266b2c3 commit 38671d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/openstack_cloud/openstack_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ def __init__(
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)
set_env_var("HTTP_PROXY", str(http_proxy))
if https_proxy := proxies.https:
set_env_var("HTTPS_PROXY", https_proxy)
set_env_var("HTTPS_PROXY", str(https_proxy))

self.app_name = app_name
self.unit_num = unit_num
Expand Down

0 comments on commit 38671d1

Please sign in to comment.