From 0953fbf6479416808e943312372a8a79183fee2f Mon Sep 17 00:00:00 2001 From: AchMenz <19305242+AchMenz@users.noreply.github.com> Date: Tue, 17 Mar 2020 17:41:04 +0100 Subject: [PATCH] fixed default time --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index ba634b5..53426de 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -17,7 +17,7 @@ var MQTTConfigDefaults = MQTTConfig{ } var CacheConfigDefaults = CacheConfig{ - Timeout: 2, + Timeout: 2 + time.Minute, } type Config struct {