Merge branch 'fix-log-content-type' of _OKE5H2PQKOUfzFFDuD4FA/default/CODE/gitness (#339)

This commit is contained in:
Dan Wilson 2023-08-22 09:52:26 +00:00 committed by Harness
commit 0437c76b84

View File

@ -53,7 +53,7 @@ func HandleFind(logCtrl *logs.Controller) http.HandlerFunc {
} }
defer rc.Close() defer rc.Close()
w.Header().Set("Content-Type", "application/json") w.Header().Set("Content-Type", "text/plain")
io.Copy(w, rc) io.Copy(w, rc)
} }
} }