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.
HTTPFileSystem._put_file()
1 parent b6536be commit 5cfec6fCopy full SHA for 5cfec6f
fsspec/implementations/http.py
@@ -307,7 +307,7 @@ async def gen_chunks():
307
)
308
309
meth = getattr(session, method)
310
- async with meth(rpath, data=gen_chunks(), **kw) as resp:
+ async with meth(self.encode_url(rpath), data=gen_chunks(), **kw) as resp:
311
self._raise_not_found_for_status(resp, rpath)
312
313
async def _exists(self, path, **kwargs):
0 commit comments