From eeb41fe7cd6aad80bbed2e3e8b5dad53148a9fbc Mon Sep 17 00:00:00 2001 From: Guy Khmelnitsky <3136012+GuyKh@users.noreply.github.com> Date: Thu, 16 Dec 2021 17:35:40 +0200 Subject: [PATCH] Update config_flow.py --- homeassistant/components/glances/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/glances/config_flow.py b/homeassistant/components/glances/config_flow.py index f00f3ca42f8..1ee7c2fa476 100644 --- a/homeassistant/components/glances/config_flow.py +++ b/homeassistant/components/glances/config_flow.py @@ -47,7 +47,7 @@ async def validate_input(hass: core.HomeAssistant, data): raise WrongVersion try: api = get_api(hass, data) - await api.get_data() + await api.get_data("all") except glances_api.exceptions.GlancesApiConnectionError as err: raise CannotConnect from err