Hello, I have the following scenario: 1. Generate a raw token (downscoped token) for a bucket/blob using a third-party service. 2. Pass this token to `gcsfs`. 3. `gcsfs` creates new credentials from this token. Everything works fine until the token expires. At that point, it begins trying to refresh the token: - https://github.com/fsspec/gcsfs/blob/main/gcsfs/retry.py#L76 - https://github.com/fsspec/gcsfs/blob/main/gcsfs/credentials.py#L205 Since the token is acquired from an external service, this refresh action keeps retrying and failing. The `gcsfs` version is `>=2024.12.0`.