We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2edff78 commit 6c5b37fCopy full SHA for 6c5b37f
src/databricks/sql/backend/sea/utils/http_client.py
@@ -123,7 +123,8 @@ def __init__(
123
124
# Handle proxy settings
125
try:
126
- # Try to get system proxy for this scheme (http/https)
+ # returns a dictionary of scheme -> proxy server URL mappings.
127
+ # https://docs.python.org/3/library/urllib.request.html#urllib.request.getproxies
128
proxy = urllib.request.getproxies().get(self.scheme)
129
except (KeyError, AttributeError):
130
# No proxy found or getproxies() failed - disable proxy
0 commit comments