From 5b3cdcd0aa6ab447a15334c4df744c8a8774a84f Mon Sep 17 00:00:00 2001 From: mjarkk Date: Fri, 26 Jul 2019 16:06:46 +0200 Subject: [PATCH] Fixed sugestion from jesse --- pkg/config/app_config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index ffb1451b..b02eee2f 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -196,7 +196,6 @@ type UpdateConfig struct { // It expects a valid duration like: 100ms, 2s, 200ns // for docs see: https://golang.org/pkg/time/#ParseDuration DockerRefreshInterval time.Duration `yaml:"dockerRefreshInterval,omitempty"` - Method string `yaml:"method,omitempty"` } // GraphConfig specifies how to make a graph of recorded container stats @@ -349,7 +348,6 @@ func GetDefaultConfig() UserConfig { OS: GetPlatformDefaultConfig(), Update: UpdateConfig{ DockerRefreshInterval: time.Millisecond * 100, - Method: "never", }, Stats: StatsConfig{ MaxDuration: duration,