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.
1 parent c32bc9c commit 9223de0Copy full SHA for 9223de0
pyiceberg/catalog/rest/auth.py
@@ -173,7 +173,7 @@ def _refresh_token(self) -> None:
173
expires_in = result.get("expires_in", self.expires_in)
174
if expires_in is None:
175
raise ValueError(
176
- "The expiration time of the Token must be provided by the Server in the Access Token Response in `expired_in` field, or by the PyIceberg Client."
+ "The expiration time of the Token must be provided by the Server in the Access Token Response in `expires_in` field, or by the PyIceberg Client."
177
)
178
self._expires_at = time.time() + expires_in - self.refresh_margin
179
0 commit comments