Browse code

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>

Sebastiaan van Stijn authored on 2025/09/03 18:33:49
Showing 1 changed files
... ...
@@ -319,7 +319,7 @@ func (daemon *Daemon) ContainerExecStart(ctx context.Context, name string, optio
319 319
 	case <-ctx.Done():
320 320
 		logger := log.G(ctx).WithFields(log.Fields{
321 321
 			"container": ec.Container.ID,
322
-			"exeec":     ec.ID,
322
+			"execID":    ec.ID,
323 323
 		})
324 324
 		logger.Debug("Sending KILL signal to container process")
325 325
 		sigCtx, cancelFunc := context.WithTimeout(context.Background(), 30*time.Second)