fix async_function_with_retries

This commit is contained in:
Ishaan Jaff 2024-06-01 18:58:55 -07:00
parent d2bd83bdbe
commit ad920be3bf

View file

@ -2064,7 +2064,6 @@ class Router:
response = await original_function(*args, **kwargs) response = await original_function(*args, **kwargs)
return response return response
except Exception as e: except Exception as e:
num_retries = None
current_attempt = None current_attempt = None
original_exception = e original_exception = e
""" """