add tier and production into task config

This commit is contained in:
lenhattan86 2021-10-05 20:36:51 -07:00
parent 4d0e61c816
commit 130983693a
9 changed files with 69 additions and 3 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()
}