We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22bd06 commit 44c6e4cCopy full SHA for 44c6e4c
src/docker.go
@@ -386,7 +386,7 @@ func (r *ResponseRecorder) WriteHeader(code int) {
386
func (r *ResponseRecorder) Write(data []byte) (int, error) {
387
r.body = append(r.body, data...)
388
r.written = true
389
- return r.ResponseWriter.Write(data)
+ return len(data), nil
390
}
391
392
func proxyDockerAuthOriginal(c *gin.Context) {
0 commit comments