Browse Source

Merge pull request #1684 from huikang/fix-dnet-missspelling

Fix misspelling fmt verb in dnet
Madhu Venugopal 8 years ago
parent
commit
b670a16ba7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libnetwork/cmd/dnet/dnet.go

+ 1 - 1
libnetwork/cmd/dnet/dnet.go

@@ -141,7 +141,7 @@ func startDiscovery(cfg *config.ClusterCfg) ([]config.Option, error) {
 	if hb == 0 {
 	if hb == 0 {
 		hb = defaultHeartbeat
 		hb = defaultHeartbeat
 	}
 	}
-	logrus.Infof("discovery : %s $s", cfg.Discovery, hb.String())
+	logrus.Infof("discovery : %s %s", cfg.Discovery, hb.String())
 	d, err := discovery.New(cfg.Discovery, hb, ttlFactor*hb, map[string]string{})
 	d, err := discovery.New(cfg.Discovery, hb, ttlFactor*hb, map[string]string{})
 	if err != nil {
 	if err != nil {
 		return nil, err
 		return nil, err