Skip to content

Commit

Permalink
Change default for bearer-token-propagation (#1642)
Browse files Browse the repository at this point in the history
To false for backwards compatibility
Fixes #1641

Signed-off-by: Will Soula <[email protected]>
  • Loading branch information
wsoula authored and pavolloffay committed Jun 28, 2019
1 parent 3181b98 commit cce78b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/query/app/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")

}

Expand Down

0 comments on commit cce78b8

Please sign in to comment.