aboutsummaryrefslogtreecommitdiff
path: root/rediscache/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'rediscache/main.go')
-rw-r--r--rediscache/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rediscache/main.go b/rediscache/main.go
index b504a24..0135534 100644
--- a/rediscache/main.go
+++ b/rediscache/main.go
@@ -68,7 +68,7 @@ func (rw *redisHTTPResponseWriter) Write(msg []byte) (int, error) {
rw.buf = &bytes.Buffer{}
}
- return rw.buf.Write(msg)
+ return rw.buf.Write(msg) //nolint:wrapcheck
}
// Simply for satisfying the http.ResponseWriter interface.