File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,16 +33,16 @@ def git_sync_with_retries(max_retries=3, backoff_seconds=5):
33
33
subprocess .check_call ([sys .executable , "tools/git-sync-deps" ], env = env )
34
34
else :
35
35
subprocess .check_call ([sys .executable , "tools/git-sync-deps" ])
36
- print ("✔ Success" )
36
+ print ("Success" )
37
37
break
38
38
except subprocess .CalledProcessError as e :
39
39
attempt += 1
40
40
if attempt > max_retries :
41
- print ("✖ All {} retries failed. Giving up." .format (max_retries ))
41
+ print ("All {} retries failed. Giving up." .format (max_retries ))
42
42
raise
43
43
else :
44
44
wait = backoff_seconds * attempt
45
- print (f"⚠️ Failed (exit { e .returncode } ), retrying in { wait } s…" )
45
+ print (f"Failed (exit { e .returncode } ), retrying in { wait } s…" )
46
46
time .sleep (wait )
47
47
48
48
def main ():
You can’t perform that action at this time.
0 commit comments