Increase max_tries to 31

Allows more time for slow Redfish implementations to get ready
This commit is contained in:
Joshua Boniface 2022-07-05 21:40:20 +00:00
parent a37b4ce456
commit 171ac11021
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class RedfishSession:
login_response = None
tries = 1
max_tries = 25
max_tries = 31
while tries < max_tries:
logger.info(f"Trying to log in to Redfish ({tries}/{max_tries - 1})...")
try: