mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-04-01 20:34:23 +02:00
Fix debug header
This commit is contained in:
parent
aa6edd13f6
commit
1df1a9eaa8
@ -98,6 +98,11 @@ func respondWithImage(ctx context.Context, reqID string, r *http.Request, rw htt
|
|||||||
rw.Header().Set("Vary", headerVaryValue)
|
rw.Header().Set("Vary", headerVaryValue)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if conf.EnableDebugHeaders {
|
||||||
|
imgdata := getImageData(ctx)
|
||||||
|
rw.Header().Set("X-Origin-Content-Length", strconv.Itoa(len(imgdata.Data)))
|
||||||
|
}
|
||||||
|
|
||||||
if conf.GZipCompression > 0 && strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
if conf.GZipCompression > 0 && strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
|
||||||
buf := responseGzipBufPool.Get(0)
|
buf := responseGzipBufPool.Get(0)
|
||||||
defer responseGzipBufPool.Put(buf)
|
defer responseGzipBufPool.Put(buf)
|
||||||
@ -119,11 +124,6 @@ func respondWithImage(ctx context.Context, reqID string, r *http.Request, rw htt
|
|||||||
rw.Write(data)
|
rw.Write(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
if conf.EnableDebugHeaders {
|
|
||||||
imgdata := getImageData(ctx)
|
|
||||||
rw.Header().Set("X-Origin-Content-Length", strconv.Itoa(len(imgdata.Data)))
|
|
||||||
}
|
|
||||||
|
|
||||||
imageURL := getImageURL(ctx)
|
imageURL := getImageURL(ctx)
|
||||||
|
|
||||||
logResponse(reqID, r, 200, nil, &imageURL, po)
|
logResponse(reqID, r, 200, nil, &imageURL, po)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user