From 1391866599a5df9ae2323ca9fee1c29cb8d3e381 Mon Sep 17 00:00:00 2001 From: Kazimieras Pociunas Date: Sun, 14 Apr 2024 21:50:20 +0300 Subject: [PATCH] Clarified flag message. Co-authored-by: Yuri Shkuro Signed-off-by: Kazimieras Pociunas --- plugin/sampling/strategystore/static/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/sampling/strategystore/static/options.go b/plugin/sampling/strategystore/static/options.go index 1cabfb656ec..73c8bb801b7 100644 --- a/plugin/sampling/strategystore/static/options.go +++ b/plugin/sampling/strategystore/static/options.go @@ -44,7 +44,7 @@ type Options struct { func AddFlags(flagSet *flag.FlagSet) { flagSet.Duration(samplingStrategiesReloadInterval, 0, "Reload interval to check and reload sampling strategies file. Zero value means no reloading") flagSet.String(samplingStrategiesFile, "", "The path for the sampling strategies file in JSON format. See sampling documentation to see format of the file") - flagSet.Bool(samplingStrategiesBugfix5270, false, "Disabled by default. If enabled - will include default operation level strategies for Ratesampling type service level strategy. See https://github.com/jaegertracing/jaeger/issues/5270 for more information.") + flagSet.Bool(samplingStrategiesBugfix5270, false, "Include default operation level strategies for Ratesampling type service level strategy. Cf. https://github.com/jaegertracing/jaeger/issues/5270") } // InitFromViper initializes Options with properties from viper