From f2d9f421267176bb133117f34f46e0a830d9c52e Mon Sep 17 00:00:00 2001 From: Igor German Date: Tue, 15 Jan 2019 23:35:48 +0300 Subject: [PATCH] Run gofmt --- manager/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/manager.go b/manager/manager.go index 82ab0c40..2fae1190 100644 --- a/manager/manager.go +++ b/manager/manager.go @@ -56,7 +56,7 @@ import ( ) var globalHousekeepingInterval = flag.Duration("global_housekeeping_interval", 1*time.Minute, "Interval between global housekeepings") -var updateMachineInfoInterval = flag.Duration("update_machine_info_interval", 5 * time.Minute, "Interval between machine info updates.") +var updateMachineInfoInterval = flag.Duration("update_machine_info_interval", 5*time.Minute, "Interval between machine info updates.") var logCadvisorUsage = flag.Bool("log_cadvisor_usage", false, "Whether to log the usage of the cAdvisor container") var eventStorageAgeLimit = flag.String("event_storage_age_limit", "default=24h", "Max length of time for which to store events (per type). Value is a comma separated list of key values, where the keys are event types (e.g.: creation, oom) or \"default\" and the value is a duration. Default is applied to all non-specified event types") var eventStorageEventLimit = flag.String("event_storage_event_limit", "default=100000", "Max number of events to store (per type). Value is a comma separated list of key values, where the keys are event types (e.g.: creation, oom) or \"default\" and the value is an integer. Default is applied to all non-specified event types")