Notifcations trigger: Already running in the server logs

Automation “Low temperature”

alias: Niedrige Temperatur
description: ''
trigger:
  - platform: numeric_state
    entity_id: sensor.netatmo_zuhause_wohnzimmer_buro_temperature
    below: '17'
  - platform: numeric_state
    entity_id: sensor.netatmo_zuhause_wohnzimmer_temperature
    below: '17'
  - platform: numeric_state
    entity_id: sensor.netatmo_zuhause_wohnzimmer_schlafzimmer_temperature
    below: '17'
condition: []
action:
  - device_id: xxx
    domain: mobile_app
    type: notify
    title: Niedrige Temperatur
    message: '{{ trigger.to_state.state }} C im Raum {{ trigger.to_state.name }}'
mode: single
max: 10

In the server logs occurs following error:

2021-01-16 11:59:04 WARNING (MainThread) [homeassistant.components.automation.niedrige_temperatur] Niedrige Temperatur: Already running

The automation itself is working fine. I get the notifications on my smartphone. This would be more a improvement to get aride of the warning message.

What do I need to change? When I understand it right means that the automation is called multiple times at the same times and then this happen. But what I need to change so this doens’t happen?

Change the mode to either queued or parallel, see here a detailed explanation of the different modes.

1 Like