Skip to content

Commit

Permalink
Do 3 retries{
Browse files Browse the repository at this point in the history
  • Loading branch information
maddieford committed Jul 11, 2023
1 parent c124cc8 commit a4f100c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def main():
needs_retry = True
retry = 3

while retry > 0 and needs_retry:
while retry >= 0 and needs_retry:
success = True
needs_retry = False

Expand Down

0 comments on commit a4f100c

Please sign in to comment.