enhancement: UpdateTask when Task is waiting for ShutdownDelay (#14775)

Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com>
This commit is contained in:
Hemanth Krishna 2022-10-07 02:03:28 +05:30 committed by GitHub
parent 8ae13208c9
commit e516fc266f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

3
.changelog/14775.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:improvement
client: Added a TaskEvent when task shutdown is waiting on shutdown_delay
```

View File

@ -982,6 +982,10 @@ func (tr *TaskRunner) handleKill(resultCh <-chan *drivers.ExitResult) *drivers.E
if delay := tr.Task().ShutdownDelay; delay != 0 {
tr.logger.Debug("waiting before killing task", "shutdown_delay", delay)
ev := structs.NewTaskEvent(structs.TaskWaitingShuttingDownDelay).
SetDisplayMessage(fmt.Sprintf("Waiting for shutdown_delay of %s before killing the task.", delay))
tr.UpdateState(structs.TaskStatePending, ev)
select {
case result := <-resultCh:
return result

View File

@ -8159,6 +8159,10 @@ const (
// TaskClientReconnected indicates that the client running the task disconnected.
TaskClientReconnected = "Reconnected"
// TaskWaitingShuttingDownDelay indicates that the task is waiting for
// shutdown delay before being TaskKilled
TaskWaitingShuttingDownDelay = "Waiting for shutdown delay"
)
// TaskEvent is an event that effects the state of a task and contains meta-data