storcon: add PauseForRestart node scheduling policy

This commit is contained in:
Vlad Lazar
2024-06-11 14:15:41 +01:00
parent 46927bc228
commit bfe5df8c4e
2 changed files with 4 additions and 0 deletions

View File

@@ -145,6 +145,7 @@ impl Node {
NodeSchedulingPolicy::Draining => MaySchedule::No,
NodeSchedulingPolicy::Filling => MaySchedule::Yes(score),
NodeSchedulingPolicy::Pause => MaySchedule::No,
NodeSchedulingPolicy::PauseForRestart => MaySchedule::No,
}
}