Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

torngit github: retry on 502/503/504 #233

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shared/torngit/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ async def make_http_call(
body=None,
headers=None,
token_to_use=None,
statuses_to_retry=None,
statuses_to_retry=[502, 503, 504],
**args,
) -> Response:
_headers = {
Expand Down Expand Up @@ -2349,7 +2349,7 @@ async def is_student(self):
url = self.count_and_get_url_template(
url_name="is_student"
).substitute()
res = await self.api(client, "get", url)
res = await self.api(client, "get", url, statuses_to_retry=[])
return res["student"]
except TorngitServerUnreachableError:
log.warning("Timeout on Github Education API for is_student")
Expand Down
Loading