remove Max Retry Reached
This commit is contained in:
parent
4a615806ca
commit
cdc179b1f4
@ -44,9 +44,9 @@ def parse_logs(timeout):
|
||||
unsuccessful_attempts += 1
|
||||
retry_info = data["message"].split("Retry ")[1].strip("()")
|
||||
current_retry, max_retry = map(int, retry_info.split("/"))
|
||||
if current_retry == max_retry:
|
||||
print(f"Max Retry Reached: {data}", flush=True)
|
||||
return False, "Max Retry Reached"
|
||||
#if current_retry == max_retry:
|
||||
# print(f"Max Retry Reached: {data}", flush=True)
|
||||
# return False, "Max Retry Reached"
|
||||
except Exception as e:
|
||||
print(f"Exception occurred: {e}", flush=True)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user