Skip to content
Snippets Groups Projects
Unverified Commit 78e53e35 authored by J. Nick Koston's avatar J. Nick Koston Committed by GitHub
Browse files

Prevent verisure lock from looping forever and sleeping in test (#37425)

parent 0c771f1c
No related branches found
No related tags found
No related merge requests found
......@@ -126,9 +126,14 @@ class VerisureDoorlock(LockEntity):
)["doorLockStateChangeTransactionId"]
_LOGGER.debug("Verisure doorlock %s", state)
transaction = {}
attempts = 0
while "result" not in transaction:
sleep(0.5)
transaction = hub.session.get_lock_state_transaction(transaction_id)
attempts += 1
if attempts == 30:
break
if attempts > 1:
sleep(0.5)
if transaction["result"] == "OK":
self._state = state
self._change_timestamp = monotonic()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment