Skip to content

Commit

Permalink
Merge pull request #7 from PitterPatterPython/proxy-fix
Browse files Browse the repository at this point in the history
Proxy fix
  • Loading branch information
robd518 authored Jul 2, 2024
2 parents d436e6b + 1f772f4 commit f78d16a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ppp_connectors/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def make_request(
check_required_env_vars(env_config, required_vars)

proxies: Dict = {
'http_proxy': env_config['HTTP_PROXY'],
'https_proxy': env_config['HTTPS_PROXY']
'http': env_config['HTTP_PROXY'],
'https': env_config['HTTPS_PROXY']
}

verify: str = False if env_config['VERIFY_SSL'].lower() == "false" else True
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ppp-connectors"
packages = [{ include = "ppp_connectors" }]
version = "0.1.1"
version = "0.1.2"
description = "A simple, lightweight set of connectors and functions to various APIs, controlled by a central broker."
authors = [
"Rob D'Aveta <[email protected]>",
Expand Down

0 comments on commit f78d16a

Please sign in to comment.