From 04dbc992ece95f73c5cc8424aa3fdec8ba76ee96 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 9 Nov 2016 07:21:58 -0800 Subject: [PATCH] Increase update delay (#4321) --- homeassistant/helpers/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/entity.py b/homeassistant/helpers/entity.py index ecb04aca9d9..ac058f89143 100644 --- a/homeassistant/helpers/entity.py +++ b/homeassistant/helpers/entity.py @@ -242,7 +242,7 @@ class Entity(object): end = timer() - if end - start > 0.2: + if end - start > 0.4: _LOGGER.warning('Updating state for %s took %.3f seconds. ' 'Please report platform to the developers at ' 'https://goo.gl/Nvioub', self.entity_id,