We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f47c80 commit 8a83230Copy full SHA for 8a83230
gcsfs/credentials.py
@@ -180,7 +180,8 @@ def maybe_refresh(self):
180
return # repeat to avoid race (but don't want lock in common case)
181
logger.debug("GCS refresh")
182
self.credentials.refresh(req)
183
- self.apply(self.heads)
+ # https://github.com/fsspec/filesystem_spec/issues/565
184
+ self.credentials.apply(self.heads)
185
186
def apply(self, out):
187
"""Insert credential headers in-place to a dictionary"""
0 commit comments