You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to access a remote zarr store via my work network which uses a proxy. It seems that the requests go through aoihttp, which does not pick up proxy information from environment variables by default (HTTP_PROXY and HTTPS_PROXY are defined but ignored). I couldn't find any way to provide proxy information via xarray.open_zarr(). (I tried directly passing proxy='http://...' and trust_env=True hoping they would be picked up by kwargs and passed all the way to either session.request() or aiohttp.ClientSession() respectively but that did not work).
Any suggestions?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to access a remote zarr store via my work network which uses a proxy. It seems that the requests go through
aoihttp
, which does not pick up proxy information from environment variables by default (HTTP_PROXY
andHTTPS_PROXY
are defined but ignored). I couldn't find any way to provide proxy information viaxarray.open_zarr()
. (I tried directly passingproxy='http://...'
andtrust_env=True
hoping they would be picked up by kwargs and passed all the way to eithersession.request()
oraiohttp.ClientSession()
respectively but that did not work).Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions