Commit 1267388c authored by Maciej Szulik's avatar Maciej Szulik

Changed JobConditionType from JobSucceded to JobComplete to more accurately…

Changed JobConditionType from JobSucceded to JobComplete to more accurately reflect job's final state
parent 919c7e94
...@@ -154,8 +154,8 @@ type JobConditionType string ...@@ -154,8 +154,8 @@ type JobConditionType string
// These are valid conditions of a job. // These are valid conditions of a job.
const ( const (
// JobSucceeded means the job has successfully completed its execution. // JobComplete means the job has completed its execution.
JobSucceeded JobConditionType = "Complete" JobComplete JobConditionType = "Complete"
) )
// JobCondition describes current state of a job. // JobCondition describes current state of a job.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment