diff --git a/shared/torngit/github.py b/shared/torngit/github.py index 226195f32..78eef1c1f 100644 --- a/shared/torngit/github.py +++ b/shared/torngit/github.py @@ -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 = { @@ -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")