Azure storage HTTP/SOCKS proxy support #2943
-
I'm trying to access an Azure Storage Account with I guess my question is: how can I use a proxy for access to Azure Storage Accounts? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Quick update, although still not working. This now gives me a different error that appears to change the behaviour to use the proxy: delta_table = DeltaTable(
table_uri=table_path,
storage_options={
"bearer_token": token.token,
"proxy_url": environ.get("HTTPS_PROXY", None),
},
) These are the errors:
So it appears a SOCKS server just doesn't work, and a web proxy is failing for another reason (possibly my end). |
Beta Was this translation helpful? Give feedback.
Quick update, although still not working. This now gives me a different error that appears to change the behaviour to use the proxy:
These are the errors:
So it appears a SOCKS server just doesn't work, and a web p…