We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 695a776 commit 00346bcCopy full SHA for 00346bc
1 file changed
community/modules/scheduler/schedmd-slurm-gcp-v6-controller/modules/slurm_files/scripts/slurmsync.py
@@ -280,6 +280,8 @@ def get_node_action(nodename: str) -> NodeAction:
280
return NodeActionDown(reason="Unbacked instance")
281
if state.base == "DOWN" and not power_flags:
282
return NodeActionPowerDown()
283
+ if "NOT_RESPONDING" in state.flags:
284
+ return NodeActionPowerDown()
285
if "POWERED_DOWN" in state.flags and lkp.is_static_node(nodename):
286
return NodeActionPowerUp()
287
elif (
0 commit comments