From 27b94cb65b34c084790f0a1884956702ee51acc2 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 28 Jan 2020 00:49:47 -0800 Subject: [PATCH] fix wrong url fix https://github.com/chrislusf/seaweedfs/issues/1187 --- weed/util/config.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/weed/util/config.go b/weed/util/config.go index 4ba68b800..7b86b749e 100644 --- a/weed/util/config.go +++ b/weed/util/config.go @@ -27,10 +27,7 @@ func LoadConfiguration(configFileName string, required bool) (loaded bool) { glog.V(0).Infof("Reading %s: %v", viper.ConfigFileUsed(), err) if required { glog.Fatalf("Failed to load %s.toml file from current directory, or $HOME/.seaweedfs/, or /etc/seaweedfs/"+ - "\n\nPlease follow this example and add a filer.toml file to "+ - "current directory, or $HOME/.seaweedfs/, or /etc/seaweedfs/:\n"+ - " https://github.com/chrislusf/seaweedfs/blob/master/weed/%s.toml\n"+ - "\nOr use this command to generate the default toml file\n"+ + "\n\nPlease use this command to generate the default %s.toml file\n"+ " weed scaffold -config=%s -output=.\n\n\n", configFileName, configFileName, configFileName) } else {