From 25ada7bbabd1e42a7db7e7eba7d9a5f93c82e4c8 Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Wed, 19 Jul 2017 20:25:06 -0700 Subject: [PATCH] Don't print atlas --- command/agent/command.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/command/agent/command.go b/command/agent/command.go index 4e1c9e760..181eb8e38 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -490,12 +490,6 @@ func (c *Command) Run(args []string) int { info["log level"] = config.LogLevel info["server"] = strconv.FormatBool(config.Server.Enabled) info["region"] = fmt.Sprintf("%s (DC: %s)", config.Region, config.Datacenter) - if config.Atlas != nil && config.Atlas.Infrastructure != "" { - info["atlas"] = fmt.Sprintf("(Infrastructure: '%s' Join: %v)", - config.Atlas.Infrastructure, config.Atlas.Join) - } else { - info["atlas"] = "" - } // Sort the keys for output infoKeys := make([]string, 0, len(info))