Add tier & production in task config (#14)

This commit is contained in:
lenhattan86 2021-10-15 12:18:26 -07:00 committed by GitHub
parent a75b691d72
commit fe664178ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 76 additions and 4 deletions

View file

@ -226,6 +226,11 @@ func (j *JobUpdate) Priority(priority int32) *JobUpdate {
return j
}
func (j *JobUpdate) Production(production bool) *JobUpdate {
j.task.Production(production)
return j
}
func (j *JobUpdate) TaskConfig() *aurora.TaskConfig {
return j.task.TaskConfig()
}