From 3ac5992e1d8b3a1a86fa8e3506cc2e865c1cb4ba Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 7 Nov 2025 13:53:30 +1000 Subject: [PATCH] chore: use short container ID for stop operation in deploy plan --- pkg/client/deploy/operation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/deploy/operation.go b/pkg/client/deploy/operation.go index 317082ea..594b38c0 100644 --- a/pkg/client/deploy/operation.go +++ b/pkg/client/deploy/operation.go @@ -79,7 +79,7 @@ func (o *StopContainerOperation) Execute(ctx context.Context, cli Client) error func (o *StopContainerOperation) Format(resolver NameResolver) string { machineName := resolver.MachineName(o.MachineID) return fmt.Sprintf("%s: Stop container [id=%s name=%s]", machineName, - o.ContainerID, resolver.ContainerName(o.ContainerID)) + o.ContainerID[:12], resolver.ContainerName(o.ContainerID)) } func (o *StopContainerOperation) String() string {