From a011048a4ec8cfb3a37e59cc3403c9df0b80ae84 Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Wed, 30 Jan 2019 12:40:40 -0500 Subject: [PATCH] Change Unifi timeout (#20606) --- homeassistant/components/unifi/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/unifi/controller.py b/homeassistant/components/unifi/controller.py index 9e21956536f..11529cbe171 100644 --- a/homeassistant/components/unifi/controller.py +++ b/homeassistant/components/unifi/controller.py @@ -114,7 +114,7 @@ async def get_controller( ) try: - with async_timeout.timeout(5): + with async_timeout.timeout(10): await controller.login() return controller