From 8eda15e75fde94391da838c2602cb387726ea359 Mon Sep 17 00:00:00 2001 From: Cosmin Tupangiu Date: Wed, 16 Oct 2024 12:17:00 +0200 Subject: [PATCH] agent/rest: Fix lint error Signed-off-by: Cosmin Tupangiu --- internal/agent/rest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/agent/rest.go b/internal/agent/rest.go index 69cc337..5348abb 100644 --- a/internal/agent/rest.go +++ b/internal/agent/rest.go @@ -130,7 +130,7 @@ func testVmwareConnection(requestCtx context.Context, log *log.PrefixLogger, cre return http.StatusBadRequest, err } - client.Logout(ctx) + _ = client.Logout(ctx) client.CloseIdleConnections() return http.StatusAccepted, nil