Revert "add node_fail job state"

This reverts commit 6454576417ca9048435390a6a3c30415d1a15951.
This commit is contained in:
Michael Panzlaff 2025-03-04 18:16:02 +01:00
parent bd93b8be8e
commit 4b2d7068b3
4 changed files with 5 additions and 13 deletions

View File

@ -1786,8 +1786,7 @@
"stopped", "stopped",
"timeout", "timeout",
"preempted", "preempted",
"out_of_memory", "out_of_memory"
"node_fail"
], ],
"x-enum-varnames": [ "x-enum-varnames": [
"JobStateRunning", "JobStateRunning",
@ -1797,8 +1796,7 @@
"JobStateStopped", "JobStateStopped",
"JobStateTimeout", "JobStateTimeout",
"JobStatePreempted", "JobStatePreempted",
"JobStateOutOfMemory", "JobStateOutOfMemory"
"JobStateNodeFail"
] ]
}, },
"schema.JobStatistics": { "schema.JobStatistics": {

View File

@ -395,7 +395,6 @@ definitions:
- timeout - timeout
- preempted - preempted
- out_of_memory - out_of_memory
- node_fail
type: string type: string
x-enum-varnames: x-enum-varnames:
- JobStateRunning - JobStateRunning
@ -406,7 +405,6 @@ definitions:
- JobStateTimeout - JobStateTimeout
- JobStatePreempted - JobStatePreempted
- JobStateOutOfMemory - JobStateOutOfMemory
- JobStateNodeFail
schema.JobStatistics: schema.JobStatistics:
description: Specification for job metric statistics. description: Specification for job metric statistics.
properties: properties:

View File

@ -1792,8 +1792,7 @@ const docTemplate = `{
"stopped", "stopped",
"timeout", "timeout",
"preempted", "preempted",
"out_of_memory", "out_of_memory"
"node_fail"
], ],
"x-enum-varnames": [ "x-enum-varnames": [
"JobStateRunning", "JobStateRunning",
@ -1803,8 +1802,7 @@ const docTemplate = `{
"JobStateStopped", "JobStateStopped",
"JobStateTimeout", "JobStateTimeout",
"JobStatePreempted", "JobStatePreempted",
"JobStateOutOfMemory", "JobStateOutOfMemory"
"JobStateNodeFail"
] ]
}, },
"schema.JobStatistics": { "schema.JobStatistics": {

View File

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