File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 3
3
import dataclasses
4
4
import json
5
5
import logging
6
+ import random
6
7
import subprocess
7
8
import threading
8
9
import time
@@ -44,7 +45,7 @@ def cmd(self) -> str:
44
45
return self .stage .cmd
45
46
46
47
47
- def retry (times , exceptions , delay : float = 0 ):
48
+ def retry (times , exceptions , delay : float = 0 , exponential : bool = True ):
48
49
"""
49
50
Retry Decorator
50
51
Retries the wrapped function/method `times` times if the exceptions listed
@@ -64,7 +65,9 @@ def newfn(*args, **kwargs):
64
65
except exceptions as e :
65
66
attempt += 1
66
67
log .warning (f"Caught exception { e } - retrying { attempt } /{ times } " )
67
- time .sleep (delay )
68
+ sleep_time = delay * (2.0 ** attempt ) if exponential else delay
69
+ sleep_time *= random .uniform (0 , 1.0 )
70
+ time .sleep (sleep_time )
68
71
return func (* args , ** kwargs )
69
72
70
73
return newfn
You can’t perform that action at this time.
0 commit comments