From 65c39bbd9204c34b29a7f2da04d8df91a75863cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Fri, 9 Apr 2021 16:44:02 +0200 Subject: [PATCH] Change discovery timeout from 10 to 60 (#48924) --- homeassistant/components/hassio/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/hassio/handler.py b/homeassistant/components/hassio/handler.py index 90077261185..301d353faf0 100644 --- a/homeassistant/components/hassio/handler.py +++ b/homeassistant/components/hassio/handler.py @@ -148,7 +148,7 @@ class HassIO: This method return a coroutine. """ - return self.send_command("/discovery", method="get") + return self.send_command("/discovery", method="get", timeout=60) @api_data def get_discovery_message(self, uuid):