From 910825580e41df68d50299af7cea95dc6db0cb04 Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Fri, 10 May 2019 18:57:08 -0400 Subject: [PATCH] Do not add coordinator to the ZHA entities. (#23803) --- homeassistant/components/zha/core/gateway.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/zha/core/gateway.py b/homeassistant/components/zha/core/gateway.py index 4a16bfe5004..daf14297ec1 100644 --- a/homeassistant/components/zha/core/gateway.py +++ b/homeassistant/components/zha/core/gateway.py @@ -93,6 +93,8 @@ class ZHAGateway: init_tasks = [] for device in self.application_controller.devices.values(): + if device.nwk == 0x0000: + continue init_tasks.append(self.async_device_initialized(device, False)) await asyncio.gather(*init_tasks)