From 2b2cdf912bc54b0b571297cff7fb37fb9f589d09 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Fri, 5 Jul 2019 23:02:38 -0700 Subject: [PATCH] Fix optional help text in NewRelic settings --- modules/newrelic/settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/newrelic/settings.go b/modules/newrelic/settings.go index cd0a15c2..3527810d 100644 --- a/modules/newrelic/settings.go +++ b/modules/newrelic/settings.go @@ -14,7 +14,7 @@ type Settings struct { apiKey string `help:"Your New Relic API token."` applicationID int `help:"The integer ID of the New Relic application you wish to report on."` - deployCount int `help:"The number of past deploys to display on screen." default:"true"` + deployCount int `help:"The number of past deploys to display on screen." optional:"true"` } func NewSettingsFromYAML(name string, ymlConfig *config.Config, globalConfig *config.Config) *Settings {