mirror of
https://github.com/esphome/esphome.git
synced 2024-11-08 09:40:53 +01:00
Add missing timeout to "async_request" (#6267)
This commit is contained in:
parent
75af4c3d62
commit
127cbde2a2
@ -110,7 +110,7 @@ class DashboardImportDiscovery:
|
||||
self, zeroconf: Zeroconf, info: AsyncServiceInfo, service_type: str, name: str
|
||||
) -> None:
|
||||
"""Process a service info."""
|
||||
if await info.async_request(zeroconf):
|
||||
if await info.async_request(zeroconf, timeout=5):
|
||||
self._process_service_info(name, info)
|
||||
|
||||
def _process_service_info(self, name: str, info: ServiceInfo) -> None:
|
||||
|
Loading…
Reference in New Issue
Block a user