Merge pull request #12971 from soltysh/job_proposal_update

Changed JobSucceded to JobComplete
pull/6/head
Wojciech Tyczynski 2015-08-28 09:47:40 +02:00
commit 3dc0de1fbc
1 changed files with 2 additions and 2 deletions

View File

@ -154,8 +154,8 @@ type JobConditionType string
// These are valid conditions of a job.
const (
// JobSucceeded means the job has successfully completed its execution.
JobSucceeded JobConditionType = "Complete"
// JobComplete means the job has completed its execution.
JobComplete JobConditionType = "Complete"
)
// JobCondition describes current state of a job.