From cce78b8d0d8482f12b4d9a6d8b06567ec4142809 Mon Sep 17 00:00:00 2001 From: wsoula Date: Fri, 28 Jun 2019 00:59:25 -0600 Subject: [PATCH] Change default for bearer-token-propagation (#1642) To false for backwards compatibility Fixes #1641 Signed-off-by: Will Soula --- cmd/query/app/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/query/app/flags.go b/cmd/query/app/flags.go index 668ba208621..9a1bb5497a0 100644 --- a/cmd/query/app/flags.go +++ b/cmd/query/app/flags.go @@ -50,7 +50,7 @@ func AddFlags(flagSet *flag.FlagSet) { flagSet.String(queryBasePath, "/", "The base path for all HTTP routes, e.g. /jaeger; useful when running behind a reverse proxy") flagSet.String(queryStaticFiles, "", "The directory path override for the static assets for the UI") flagSet.String(queryUIConfig, "", "The path to the UI configuration file in JSON format") - flagSet.Bool(queryTokenPropagation, true, "Allow propagation of bearer token to be used by storage plugins") + flagSet.Bool(queryTokenPropagation, false, "Allow propagation of bearer token to be used by storage plugins") }