I’ve been using HA for a couple weeks now and am slowly getting the hang of it. I’ve decided to start working with notifications and I’ve run into an issue when a notification is generated, receiving an error that the notify.xyz service is not found.
I’m running CentOS 7 with HA version 0.84.6 in a python virtual environment.
When attempting to send a notification via both e-mail and the simplepush app, I receive the following errors:
2018-12-28 23:31:23 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/home/homeassistant/homeassistant/lib64/python3.6/site-packages/homeassistant/core.py", line 1098, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: (ServiceNotFound(...), 'Service notify.smtp not found')
2018-12-28 23:31:23 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/home/homeassistant/homeassistant/lib64/python3.6/site-packages/homeassistant/core.py", line 1098, in async_call
raise ServiceNotFound(domain, service) from None
homeassistant.exceptions.ServiceNotFound: (ServiceNotFound(...), 'Service notify.simplepush not found')
I’ve setup a brand new server for testing and installed a fresh copy of HA version 0.84.6. The issue remains. I’ve made no configuration changes from the fresh install with the exception of adding the notify component with the configuration detailed below:
notify:
- name: <redacted>
platform: group
services:
- service: smtp
data:
sender: <redacted>
recipient: <redacted>
server: <redacted>
- service: simplepush
data:
device_key: <redacted>
I’ve installed HA on both my “production” and new test server using the documentation for the OS Prep and HA install.
Have I hit a bug or is there something missing on my system?