2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-01-11 18:42:29 +00:00

Catch general reseat errors

This commit is contained in:
Jarrod Johnson
2025-04-09 16:06:12 -04:00
parent 2e60ca13b7
commit 66265d170a

View File

@@ -33,6 +33,8 @@ def reseat_bays(encmgr, bays, configmanager, rspq):
rspq.put(msg.ConfluentNodeError(node, str(uf)))
except exc.TargetEndpointUnreachable as uf:
rspq.put(msg.ConfluentNodeError(node, str(uf)))
except Exception as e:
rspq.put(msg.ConfluentNodeError(node, str(e)))
finally:
rspq.put(None)