Skip to content

Commit 9223de0

Browse files
kevinjqliuCopilot
andauthored
Update pyiceberg/catalog/rest/auth.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent c32bc9c commit 9223de0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/catalog/rest/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def _refresh_token(self) -> None:
173173
expires_in = result.get("expires_in", self.expires_in)
174174
if expires_in is None:
175175
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."
176+
"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."
177177
)
178178
self._expires_at = time.time() + expires_in - self.refresh_margin
179179

0 commit comments

Comments
 (0)