Revert "add more missing node_fail states"

This reverts commit 0a3e678329.
This commit is contained in:
Michael Panzlaff
2025-03-04 18:15:39 +01:00
parent 0a3e678329
commit a61ff915ac
6 changed files with 5 additions and 13 deletions

View File

@@ -21,7 +21,7 @@ type BaseJob struct {
Partition string `json:"partition,omitempty" db:"cluster_partition" example:"main"`
Project string `json:"project" db:"project" example:"abcd200"`
User string `json:"user" db:"hpc_user" example:"abcd100h"`
State JobState `json:"jobState" db:"job_state" example:"completed" enums:"completed,failed,cancelled,stopped,timeout,out_of_memory,node_fail"`
State JobState `json:"jobState" db:"job_state" example:"completed" enums:"completed,failed,cancelled,stopped,timeout,out_of_memory"`
Tags []*Tag `json:"tags,omitempty"`
RawEnergyFootprint []byte `json:"-" db:"energy_footprint"`
RawFootprint []byte `json:"-" db:"footprint"`

View File

@@ -76,7 +76,6 @@
"cancelled",
"stopped",
"out_of_memory",
"node_fail",
"timeout"
]
},