mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 15:08:10 +01:00
Fix zeroconf time comparisons (#2733)
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
parent
7279f1fcc1
commit
c75566b374
1 changed files with 4 additions and 3 deletions
|
@ -13,8 +13,9 @@ from zeroconf import (
|
||||||
RecordUpdateListener,
|
RecordUpdateListener,
|
||||||
Zeroconf,
|
Zeroconf,
|
||||||
ServiceBrowser,
|
ServiceBrowser,
|
||||||
|
ServiceStateChange,
|
||||||
|
current_time_millis,
|
||||||
)
|
)
|
||||||
from zeroconf._services import ServiceStateChange
|
|
||||||
|
|
||||||
_CLASS_IN = 1
|
_CLASS_IN = 1
|
||||||
_FLAGS_QR_QUERY = 0x0000 # query
|
_FLAGS_QR_QUERY = 0x0000 # query
|
||||||
|
@ -88,7 +89,7 @@ class DashboardStatus(threading.Thread):
|
||||||
entries = self.zc.cache.entries_with_name(key)
|
entries = self.zc.cache.entries_with_name(key)
|
||||||
if not entries:
|
if not entries:
|
||||||
return False
|
return False
|
||||||
now = time.time() * 1000
|
now = current_time_millis()
|
||||||
|
|
||||||
return any(
|
return any(
|
||||||
(entry.created + DashboardStatus.OFFLINE_AFTER) >= now for entry in entries
|
(entry.created + DashboardStatus.OFFLINE_AFTER) >= now for entry in entries
|
||||||
|
@ -99,7 +100,7 @@ class DashboardStatus(threading.Thread):
|
||||||
self.on_update(
|
self.on_update(
|
||||||
{key: self.host_status(host) for key, host in self.key_to_host.items()}
|
{key: self.host_status(host) for key, host in self.key_to_host.items()}
|
||||||
)
|
)
|
||||||
now = time.time() * 1000
|
now = current_time_millis()
|
||||||
for host in self.query_hosts:
|
for host in self.query_hosts:
|
||||||
entries = self.zc.cache.entries_with_name(host)
|
entries = self.zc.cache.entries_with_name(host)
|
||||||
if not entries or all(
|
if not entries or all(
|
||||||
|
|
Loading…
Reference in a new issue