adding tenacity retries

This commit is contained in:
Krrish Dholakia 2023-08-03 10:06:31 -07:00
parent 10832be1e4
commit a8b3fc6c2d
12 changed files with 37 additions and 11 deletions

View file

@ -18,7 +18,8 @@ start_time = time.time()
try:
stop_after_10_s(force_timeout=1)
except:
except Exception as e:
print(e)
pass
end_time = time.time()