Merge pull request #2734 from esphome/bump-2021.11.0b8

2021.11.0b8
This commit is contained in:
Jesse Hills 2021-11-16 13:50:10 +13:00 committed by GitHub
commit 41a3a17456
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
"""Constants used by esphome.""" """Constants used by esphome."""
__version__ = "2021.11.0b7" __version__ = "2021.11.0b8"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_" ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"

View file

@ -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(