From 751fd296726b5a6f6c515f1c3470bc75c358429d Mon Sep 17 00:00:00 2001 From: Andrew Mason Date: Thu, 1 Jun 2023 12:55:47 -0400 Subject: [PATCH] Update go/viperutil/config.go Co-authored-by: Deepthi Sigireddi Signed-off-by: Andrew Mason --- go/viperutil/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/viperutil/config.go b/go/viperutil/config.go index 7f4725d4bce..5d00f68a51a 100644 --- a/go/viperutil/config.go +++ b/go/viperutil/config.go @@ -165,7 +165,7 @@ func LoadConfig() (context.CancelFunc, error) { msg := "Failed to read in config %s: %s" switch configFileNotFoundHandling.Get() { case WarnOnConfigFileNotFound: - msg += ". This is optional, and can be ignored if you are not using config files. For further reading, see https://github.com/vitessio/vitess/blob/main/doc/viper/viper.md#config-files." + msg += ". This is optional, and can be ignored if you are not using config files. For a detailed explanation, see https://github.com/vitessio/vitess/blob/main/doc/viper/viper.md#config-files." log.WARN(msg, registry.Static.ConfigFileUsed(), nferr.Error()) fallthrough // after warning, ignore the error case IgnoreConfigFileNotFound: