Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-08-11 09:54:46 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-09-23 10:02:55 +0300
commit80736c54d3a24702733c6e8227e56b5067742802 (patch)
tree65fc3663578b8cc18419caec5459b862600358d1 /.golangci.yml
parent9c4937daf01220a9fd99d67dd5b5d5d9df1e9954 (diff)
linguist: Ignore error in deferred close of zlib writer
We already check the error when we manually close the zlib writer, but don't in the deferred call. This is fine though at it won't do anything in the happy path as the writer was closed already, and we already got an error in the unhappy path. Explicitly ignore the error to make our linters happy.
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml1
1 files changed, 0 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index a80d3f5fc..a8ebf5f14 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -53,7 +53,6 @@ linters-settings:
# eventually fix.
exclude-functions:
# Close
- - (*compress/zlib.Writer).Close
- (*database/sql.DB).Close
- (*database/sql.Rows).Close
- (*github.com/hashicorp/yamux.Session).Close