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

5
job.go
View file

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