chore: seems like we don't need to ignore the error handling
This commit is contained in:
parent
0dc0086b8d
commit
aad6433b07
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue