Skip to content

Commit

Permalink
Bump pyvera to 0.2.21
Browse files Browse the repository at this point in the history
pyvera 0.2.21 fixes the fact that use of requests.get was not using a
timeout. Some times (after a few days of use) the pyvera poll loop
would hang indefinitely on a requests.get of the event interface. This
would cause the pyvera thread to hang completely. It would also
prevent graceful shutdown, as pyvera does a thread join.

The new version uses a timeout, so that we won't lock up any more.
  • Loading branch information
sdague committed Nov 21, 2016
1 parent 123f4ac commit b8e462c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/vera.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
EVENT_HOMEASSISTANT_STOP)
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['pyvera==0.2.20']
REQUIREMENTS = ['pyvera==0.2.21']

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ python-wink==0.10.0
# pyuserinput==0.1.11

# homeassistant.components.vera
pyvera==0.2.20
pyvera==0.2.21

# homeassistant.components.notify.html5
pywebpush==0.6.1
Expand Down

0 comments on commit b8e462c

Please sign in to comment.