Skip to content

Commit

Permalink
Apply the proxy conversion on every call
Browse files Browse the repository at this point in the history
  • Loading branch information
gdiepen committed Oct 31, 2023
1 parent 430438f commit 82a0895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsspec/implementations/webhdfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _connect(self):
)

def _call(self, op, method="get", path=None, data=None, redirect=True, **kwargs):
url = self.url + quote(path or "")
url = self._apply_proxy(self.url) + quote(path or "")
args = kwargs.copy()
args.update(self.pars)
args["op"] = op.upper()
Expand Down

0 comments on commit 82a0895

Please sign in to comment.