Upgrade eventlet to 0.19
This commit is contained in:
parent
05946ae5a2
commit
98de7c9287
3 changed files with 4 additions and 5 deletions
|
@ -113,14 +113,13 @@ class APIEventStream(HomeAssistantView):
|
|||
|
||||
while True:
|
||||
try:
|
||||
# Somehow our queue.get takes too long to
|
||||
# be notified of arrival of object. Probably
|
||||
# Somehow our queue.get sometimes takes too long to
|
||||
# be notified of arrival of data. Probably
|
||||
# because of our spawning on hub in other thread
|
||||
# hack. Because current goal is to get this out,
|
||||
# We just timeout every second because it will
|
||||
# return right away if qsize() > 0.
|
||||
# So yes, we're basically polling :(
|
||||
# socket.io anyone?
|
||||
payload = to_write.get(timeout=1)
|
||||
|
||||
if payload is stop_obj:
|
||||
|
|
|
@ -15,7 +15,7 @@ from homeassistant.helpers.entity import split_entity_id
|
|||
import homeassistant.util.dt as dt_util
|
||||
|
||||
DOMAIN = "http"
|
||||
REQUIREMENTS = ("eventlet==0.18.4", "static3==0.7.0", "Werkzeug==0.11.5",)
|
||||
REQUIREMENTS = ("eventlet==0.19.0", "static3==0.7.0", "Werkzeug==0.11.5",)
|
||||
|
||||
CONF_API_PASSWORD = "api_password"
|
||||
CONF_SERVER_HOST = "server_host"
|
||||
|
|
|
@ -57,7 +57,7 @@ dweepy==0.2.0
|
|||
eliqonline==1.0.12
|
||||
|
||||
# homeassistant.components.http
|
||||
eventlet==0.18.4
|
||||
eventlet==0.19.0
|
||||
|
||||
# homeassistant.components.thermostat.honeywell
|
||||
evohomeclient==0.2.5
|
||||
|
|
Loading…
Add table
Reference in a new issue