Update JobStatus's

This commit is contained in:
Alex Dadgar 2016-01-07 20:08:14 -08:00
parent 9f4b5e39aa
commit 80aa6d3007

View file

@ -689,10 +689,9 @@ const (
)
const (
JobStatusPending = "pending" // Pending means the job is waiting on scheduling
JobStatusRunning = "running" // Running means the entire job is running
JobStatusComplete = "complete" // Complete means there was a clean termination
JobStatusDead = "dead" // Dead means there was abnormal termination
JobStatusPending = "pending" // Pending means the job is waiting on scheduling
JobStatusRunning = "running" // Running means the job has non-terminal allocations
JobStatusDead = "dead" // Dead means all evaluation's and allocations are terminal
)
const (