From 982a8ccb88de4a0ed3496b9c1e91ec05c6cbc3d9 Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Fri, 27 Jan 2023 16:44:09 +0100 Subject: [PATCH] support dry-run for kill 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 e2e4acaee..0d9d1e96d 100644 --- a/pkg/api/dryrunclient.go +++ b/pkg/api/dryrunclient.go @@ -63,7 +63,7 @@ func (d *DryRunClient) ContainerCreate(ctx context.Context, config *containerTyp } func (d *DryRunClient) ContainerKill(ctx context.Context, container, signal string) error { - return ErrNotImplemented + return nil } func (d *DryRunClient) ContainerPause(ctx context.Context, container string) error {