Skip to content

Commit

Permalink
Rename duplicate time field to be more descriptive and unique
Browse files Browse the repository at this point in the history
  • Loading branch information
sjpalf committed Nov 27, 2024
1 parent a080504 commit b6f145f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions agent/api/task/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -3006,9 +3006,9 @@ func (task *Task) RecordExecutionStoppedAt(container *apicontainer.Container) {
return
}
logger.Info("Essential container stopped; recording task stopped time", logger.Fields{
field.TaskID: task.GetID(),
field.Container: container.Name,
field.Time: now.String(),
field.TaskID: task.GetID(),
field.Container: container.Name,
field.ExecutionStoppedAt: now.String(),
})
}

Expand Down

0 comments on commit b6f145f

Please sign in to comment.