From 53a99dc9fab72ae1daf297e2e92a281ed955ceca Mon Sep 17 00:00:00 2001 From: "Craig J. Ward" Date: Thu, 1 Feb 2018 04:24:02 -0600 Subject: [PATCH] Goalfeed channel (#12086) * fix event channel name * I guess accidentally added timeout here too. --- homeassistant/components/goalfeed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/goalfeed.py b/homeassistant/components/goalfeed.py index 5f9985fd38d..f360d4ffba9 100644 --- a/homeassistant/components/goalfeed.py +++ b/homeassistant/components/goalfeed.py @@ -54,7 +54,7 @@ def setup(hass, config): channel.bind('goal', goal_handler) pusher = pysher.Pusher(GOALFEED_APP_ID, secure=False, port=8080, - custom_host=GOALFEED_HOST, timeout=30) + custom_host=GOALFEED_HOST) pusher.connection.bind('pusher:connection_established', connect_handler) pusher.connect()