We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3ab82 commit 16d8ea9Copy full SHA for 16d8ea9
zha/zigbee/device.py
@@ -840,9 +840,13 @@ async def async_configure(self) -> None:
840
and self.identify_ch is not None
841
and not self.skip_configuration
842
):
843
- await self.identify_ch.trigger_effect(
844
- effect_id=Identify.EffectIdentifier.Okay,
845
- effect_variant=Identify.EffectVariant.Default,
+ self._gateway.async_create_task(
+ self.identify_ch.trigger_effect(
+ effect_id=Identify.EffectIdentifier.Okay,
846
+ effect_variant=Identify.EffectVariant.Default,
847
+ ),
848
+ name=f"({self.nwk},{self.model}) trigger_effect identify",
849
+ eager_start=True,
850
)
851
852
def _is_entity_removed_by_quirk(self, entity: PlatformEntity) -> bool:
0 commit comments