chore: seems like we don't need to ignore the error handling

This commit is contained in:
Ramon Silveira Borges 2024-03-24 22:07:42 +01:00
parent 0dc0086b8d
commit aad6433b07

View file

@ -95,7 +95,7 @@ var _ = framework.DescribeSetting("GRPC", func() {
),
)
assert.Nil(ginkgo.GinkgoT(), err, "error creating a connection")
defer conn.Close() //nolint:errcheck // Checking the error here is not valuable
defer conn.Close()
client := pb.NewGRPCBinClient(conn)
ctx := context.Background()