Add missing timeout to "async_request" (#6267)

This commit is contained in:
Jesse Hills 2024-02-22 12:51:06 +13:00
parent 2d22a2d1c2
commit 2e7129e816
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

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