Skip to content

Commit

Permalink
Merge pull request #1863 from ceph/fog-wfr-eoferror
Browse files Browse the repository at this point in the history
FOG._wait_for_ready: Tolerate EOFError
  • Loading branch information
dmick authored Jul 1, 2023
2 parents 8dce2fc + b9dee08 commit b53f236
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion teuthology/provision/fog.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@ def _wait_for_ready(self):
try:
self.remote.run(args=cmd, timeout=600)
break
except ConnectionResetError as e:
except (
ConnectionResetError,
EOFError,
) as e:
log.error(f"{e} on {self.shortname}")
self.log.info("Node is ready")

Expand Down

0 comments on commit b53f236

Please sign in to comment.