From 1c635ead2de7333ccf30c6b342d2fb16219689c4 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Thu, 26 May 2016 01:52:35 -0700 Subject: [PATCH] Fixing the alloc runner tests --- client/client.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/client.go b/client/client.go index 34fe686a1..4fb36f76d 100644 --- a/client/client.go +++ b/client/client.go @@ -77,8 +77,10 @@ const ( // DefaultConfig returns the default configuration func DefaultConfig() *config.Config { return &config.Config{ - LogOutput: os.Stderr, - Region: "global", + LogOutput: os.Stderr, + Region: "global", + StatsDataPoints: 60, + StatsCollectionInterval: 1 * time.Second, } }