False is true and true is false

This commit is contained in:
Kegan Dougal 2020-04-15 15:22:53 +01:00
parent b82ca6555c
commit 392dca78cd

View file

@ -46,7 +46,7 @@ func MakeAuthAPI(
func MakeExternalAPI(metricsName string, f func(*http.Request) util.JSONResponse) http.Handler {
// TODO: We shouldn't be directly reading env vars here, inject it in instead.
// Refactor this when we split out config structs.
verbose := true
verbose := false
if os.Getenv("DENDRITE_TRACE_HTTP") == "1" {
verbose = true
}