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 fa0d538 commit 3665e87Copy full SHA for 3665e87
homeassistant/helpers/service.py
@@ -210,9 +210,8 @@ async def async_get_all_descriptions(hass):
210
domain_yaml = loaded[domain]
211
yaml_description = domain_yaml.get(service, {})
212
213
- if not yaml_description:
214
- _LOGGER.warning("Missing service description for %s/%s",
215
- domain, service)
+ # Don't warn for missing services, because it triggers false
+ # positives for things like scripts, that register as a service
216
217
description = descriptions_cache[cache_key] = {
218
'description': yaml_description.get('description', ''),
0 commit comments