daemon: Daemon.ContainerExecStart: fix typo in log field

Changing it to `execID`, which is what's used in most/all other places.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-09-03 11:33:49 +02:00
parent abfe332072
commit e099f1e409

View File

@@ -319,7 +319,7 @@ func (daemon *Daemon) ContainerExecStart(ctx context.Context, name string, optio
case <-ctx.Done():
logger := log.G(ctx).WithFields(log.Fields{
"container": ec.Container.ID,
"exeec": ec.ID,
"execID": ec.ID,
})
logger.Debug("Sending KILL signal to container process")
sigCtx, cancelFunc := context.WithTimeout(context.Background(), 30*time.Second)