home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
73.31k stars 30.62k forks source link

Automations are failing due to Unable to find notify service for webhook ID error #124795

Closed pimpshiiiit closed 1 month ago

pimpshiiiit commented 2 months ago

The problem

All automations continues to stop working with the following errors

Logger: homeassistant.components.automation.double_car_garage_door_is_closed Source: components/automation/init.py:776 integration: Automation (documentation, issues) First occurred: 8:04:24 PM (10 occurrences) Last logged: 8:52:26 PM

Error while executing automation automation.double_car_garage_door_is_closed: Unable to find notify service for webhook ID

What version of Home Assistant Core has the issue?

core-2024.8.3

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

Automation

Link to integration documentation on our website

https://www.home-assistant.io/docs/automation/

Diagnostics information

home-assistant_mobile_app_2024-08-28T14-35-35.427Z.log

Example YAML snippet

alias: Front Door is Open
description: ""
trigger:
  - platform: state
    entity_id:
      - binary_sensor.alarm_panel_pro_511fa4_zone_1
    from: "off"
    to: "on"
condition: []
action:
  - type: turn_on
    device_id: 8677929ac6d3e5302c493a9d1aab56af
    entity_id: 25a4152369b69412c5b699bf823229ca
    domain: light
  - type: turn_on
    device_id: f0a68335274d3aa2bb49e94107453dbb
    entity_id: 700566510197ef4e3d671521d36cc642
    domain: light
  - device_id: 395d0b8aec3fe45168fd7ac627330015
    domain: mobile_app
    type: notify
    message: Front Door is Open
    title: Front Door is Open
  - device_id: 3338e23066fb5c73fc491e789ca71f74
    domain: mobile_app
    type: notify
    message: Front Door is Open
    title: Front Door is Open
  - device_id: c75c7a25056a0b2e28802076486ae38d
    domain: mobile_app
    type: notify
    message: Front Door is Open
    title: Front Door is Open
  - data:
      message: TTS
      data:
        tts_text: Front Door is Open!
        media_stream: alarm_stream_max
        ttl: 0
        priority: high
    action: notify.mobile_app_sam_tablet_laundry_rm
  - data:
      data:
        tts_text: Front Door is Open!
        media_stream: alarm_stream_max
        ttl: 0
        priority: high
      message: TTS
    action: notify.mobile_app_sm_tablet_master_bdrm
mode: single

Anything in the logs that might be useful for us?

This was working fine until the last 2 HA core updates.

Additional information

No response

home-assistant[bot] commented 2 months ago

Hey there @home-assistant/core, mind taking a look at this issue as it has been labeled with an integration (mobile_app) you are listed as a code owner for? Thanks!

Code owner commands Code owners of `mobile_app` can trigger bot actions by commenting: - `@home-assistant close` Closes the issue. - `@home-assistant rename Awesome new title` Renames the issue. - `@home-assistant reopen` Reopen the issue. - `@home-assistant unassign mobile_app` Removes the current integration label and assignees on the issue, add the integration domain after the command. - `@home-assistant add-label needs-more-information` Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue. - `@home-assistant remove-label needs-more-information` Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.

(message by CodeOwnersMention)


mobile_app documentation mobile_app source (message by IssueLinks)

dshokouhi commented 1 month ago

recreate the automation and use the actual action instead of the device. Your last 2 notify actions look more correct than the 3 above it which refrerence the device

pimpshiiiit commented 1 month ago

The latest HA Core update appears to have fixed the issue.

dshokouhi commented 1 month ago

closing as per above comment