From 78b940476753d5cc18d991375aa9fa2eaf28f0df Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Wed, 8 Feb 2023 22:55:48 +0100 Subject: [PATCH] support dry-run for stop command Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- pkg/api/dryrunclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/dryrunclient.go b/pkg/api/dryrunclient.go index 18a0f49c..9d5ca09d 100644 --- a/pkg/api/dryrunclient.go +++ b/pkg/api/dryrunclient.go @@ -93,7 +93,7 @@ func (d *DryRunClient) ContainerStart(ctx context.Context, container string, opt } func (d *DryRunClient) ContainerStop(ctx context.Context, container string, options containerType.StopOptions) error { - return ErrNotImplemented + return nil } func (d *DryRunClient) ContainerUnpause(ctx context.Context, container string) error {