From eccfac82cff3b1afc4352f0d23669f6b04e79220 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Thu, 1 Jun 2023 19:01:01 -0400 Subject: [PATCH] fix typos --- nomad/structs/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 0022ec55b28..8e2ea7e2ee9 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -6831,7 +6831,7 @@ func (tg *TaskGroup) Validate(j *Job) error { // Validate the group's Update Strategy does not conflict with the Task's kill_timeout for service type jobs if isTypeService && tg.Update != nil { - // progress_deadline = 0 has a special meaning show it should not + // progress_deadline = 0 has a special meaning so it should not be // validated against the task's kill_timeout. if tg.Update.ProgressDeadline > 0 && task.KillTimeout > tg.Update.ProgressDeadline { mErr.Errors = append(mErr.Errors, fmt.Errorf("Task %s has a kill timout (%s) longer than the group's progress deadline (%s)",