Skip to content

Commit c6fb77c

Browse files
committed
Increase number of retries to 5
CL: none
1 parent 95b1ff7 commit c6fb77c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/prebuild.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def ProcessLoc(e, loc, args):
295295
break
296296
except (Exception, KeyboardInterrupt) as e:
297297
logging.exception("Exception (attempt %d): %s", i, e)
298-
if not isinstance(e, KeyboardInterrupt) and i < 3:
298+
if not isinstance(e, KeyboardInterrupt) and i < 5:
299299
time.sleep(1)
300300
i += 1
301301
else:

0 commit comments

Comments
 (0)