annotate python/example/retry.py @ 897:ba2630ce851b
update default branch for git
author |
Jeff Hammel <k0scist@gmail.com> |
date |
Mon, 01 Aug 2022 16:40:53 -0700 |
parents |
88f19ebb43ea |
children |
|
rev |
line source |
758
|
1 def retry(f, retries=5, args=(), kw=None, exceptions=()):
|
|
2
|
|
3 kw = kw or {}
|
|
4 for index in range(retries):
|
|
5 try:
|
|
6 return f(*args, **kw)
|
|
7 except Exception as e:
|
|
8 if isinstance(e, exceptions):
|
|
9 print ("something bad happen")
|
|
10 else:
|
|
11 raise
|
|
12 raise RetryTimeout("Tries a bunch of times :(") |