Skip to content

Commit

Permalink
Made warning that occurs every time an info to avoid user irritation
Browse files Browse the repository at this point in the history
  • Loading branch information
XaverStiensmeier committed Sep 15, 2023
1 parent 15c71c8 commit a274851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bibigrid/core/utility/handler/ssh_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def is_active(client, floating_ip_address, private_key, username, timeout=5):
LOG.error(f"Attempt to connect to {floating_ip_address} failed.")
raise ConnectionException(exc) from exc
except socket.timeout as exc:
LOG.warning("Socket timeout exception occurred. Try again ...")
LOG.info("Socket timeout exception occurred. Try again ...")
if attempts < timeout:
attempts += 1
else:
Expand Down

0 comments on commit a274851

Please sign in to comment.