From 933bed5f5df08e08f4758286190fb7ec7b1d304b Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Fri, 1 May 2020 10:56:46 +0200 Subject: [PATCH] Invert the logic to preserve the happy path Signed-off-by: Ulysses Souza --- client/client.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/client/client.go b/client/client.go index 6b5f7100b..aa7588c1b 100644 --- a/client/client.go +++ b/client/client.go @@ -57,13 +57,15 @@ func New(ctx context.Context) (*Client, error) { return nil, err } - if ba, ok := b.(containers.ContainerService); ok { - return &Client{ - backendType: contextType, - cc: ba, - }, nil + ba, ok := b.(containers.ContainerService) + if !ok { + return nil, errors.New("backend not found") } - return nil, errors.New("backend not found") + return &Client{ + backendType: contextType, + cc: ba, + }, nil + } type Client struct {