Skip to content

Commit

Permalink
Do not subscribe to service_registered event (#119)
Browse files Browse the repository at this point in the history
Fixes #40
  • Loading branch information
postlund authored Mar 15, 2021
1 parent 35f1912 commit 600e5e6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions custom_components/remote_homeassistant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
EVENT_CALL_SERVICE,
EVENT_HOMEASSISTANT_STOP,
EVENT_STATE_CHANGED,
EVENT_SERVICE_REGISTERED,
CONF_EXCLUDE,
CONF_ENTITIES,
CONF_ENTITY_ID,
Expand Down Expand Up @@ -144,7 +143,7 @@
HEARTBEAT_INTERVAL = 20
HEARTBEAT_TIMEOUT = 5

INTERNALLY_USED_EVENTS = [EVENT_STATE_CHANGED, EVENT_SERVICE_REGISTERED]
INTERNALLY_USED_EVENTS = [EVENT_STATE_CHANGED]


def async_yaml_to_config_entry(instance_conf):
Expand Down

0 comments on commit 600e5e6

Please sign in to comment.