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 d49274f commit 5e30a38Copy full SHA for 5e30a38
1 file changed
src/openhound_github/auth.py
@@ -61,7 +61,7 @@ def jwt(self) -> str:
61
claims = {
62
"iss": self.client_id,
63
"iat": int(now_utc - 10), # Issued 10 seconds in the past
64
- "exp": int(now_utc + 600), # Expires in 10 minutes
+ "exp": int(now_utc + 540), # Expires in 9 minutes (GitHub max is 10, leaving room for clock drift)
65
}
66
67
try:
0 commit comments