add node_fail job state

This commit is contained in:
Michael Panzlaff
2025-03-04 17:39:38 +01:00
parent a485bd5977
commit 6454576417
4 changed files with 13 additions and 5 deletions

View File

@@ -143,6 +143,7 @@ const (
JobStateTimeout JobState = "timeout"
JobStatePreempted JobState = "preempted"
JobStateOutOfMemory JobState = "out_of_memory"
JobStateNodeFail JobState = "node_fail"
)
func (e *JobState) UnmarshalGQL(v interface{}) error {
@@ -171,5 +172,6 @@ func (e JobState) Valid() bool {
e == JobStateStopped ||
e == JobStateTimeout ||
e == JobStatePreempted ||
e == JobStateOutOfMemory
e == JobStateOutOfMemory ||
e == JobStateNodeFail
}