Protokoll Warnung bezogen auf Automation

HI!

Ich habe ein paar Warnungen in den Protokollen die sich auf die eine oder andere Automatisierung beziehen.

Es heißt dann immer : Already running…

Meine Automationen sind eigentlich so gestrickt das auch immer überprüft wird ob das was AUS gehen soll auch AN ist und umgekehrt um unnötige ausführungen zu vermeiden.

Hat jemand einen Tipp wie ich diese Warunung umgehen/beseitigen kann?

Hier die Warnung:

Logger: homeassistant.components.automation.wohnzimmettablet_bildschirm
Quelle: helpers/script.py:2041
Integration: Automation (Dokumentation, Probleme)
Erstmals aufgetreten: 26. Januar 2025 um 17:22:52 (12 Vorkommnisse)
Zuletzt protokolliert: 06:00:01

WohnzimmetTablet Bildschirm: Already running

Und hier meine Automation:

alias: WohnzimmetTablet Bildschirm
description: ""
triggers:
  - trigger: state
    entity_id:
      - input_boolean.zuhause
    id: Zuhause
  - trigger: time
    at: "22:45:00"
    id: 22:45 Uhr
  - trigger: time
    at: "06:00:00"
    id: "06:00"
  - trigger: time
    at: "03:45:00"
    id: "03:45"
  - trigger: time
    at: "04:30:00"
    id: "04:30"
  - trigger: time
    at: "05:00:00"
    id: "05:00"
  - trigger: time
    at: "05:45:00"
    id: "05:45"
  - trigger: state
    entity_id:
      - input_boolean.partytime
    to: "off"
    id: PartyTime AUS
  - trigger: state
    entity_id:
      - input_boolean.tvtime
    to: "off"
    id: TVTime AUS
  - trigger: state
    entity_id:
      - switch.tablet_wohnzimmer_bildschirm
    to: "on"
    id: Wohnzimmertablet AN
  - trigger: state
    entity_id:
      - input_boolean.schlafen
    to: "on"
    id: Schlafe AN
conditions: []
actions:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Zuhause
          - condition: state
            entity_id: input_boolean.zuhause
            state: "off"
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet AUS
      - conditions:
          - condition: trigger
            id:
              - 22:45 Uhr
              - PartyTime AUS
              - TVTime AUS
              - Wohnzimmertablet AN
          - condition: time
            after: "22:45:00"
            before: "06:00:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
              - sun
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
          - condition: state
            entity_id: input_boolean.partytime
            state: "off"
          - condition: state
            entity_id: input_boolean.tvtime
            state: "off"
          - condition: not
            conditions:
              - condition: state
                entity_id: input_select.schicht
                state: Früh
              - condition: time
                after: "03:44:00"
                before: "04:31:00"
                weekday:
                  - mon
                  - tue
                  - wed
                  - thu
                  - fri
                  - sat
                  - sun
          - condition: not
            conditions:
              - condition: state
                entity_id: input_select.schicht
                state: Normal
              - condition: time
                after: "04:59:00"
                before: "05:46:00"
                weekday:
                  - mon
                  - tue
                  - wed
                  - thu
                  - fri
                  - sat
                  - sun
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet AUS 2
      - conditions:
          - condition: trigger
            id:
              - 22:45 Uhr
              - PartyTime AUS
              - TVTime AUS
          - condition: time
            after: "22:45:00"
            before: "03:40:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
              - sun
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet AUS 3
      - conditions:
          - condition: trigger
            id:
              - Schlafe AN
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet AUS 4
      - conditions:
          - condition: trigger
            id:
              - Zuhause
              - "06:00"
          - condition: state
            entity_id: input_boolean.zuhause
            state: "on"
          - condition: device
            type: is_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
          - condition: time
            after: "06:00:00"
            before: "22:45:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
              - sat
              - sun
          - condition: state
            entity_id: input_boolean.schlafen
            state: "off"
        sequence:
          - type: turn_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet EIN
      - conditions:
          - condition: trigger
            id:
              - "03:45"
          - condition: time
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
          - condition: state
            entity_id: input_select.schicht
            state: Früh
          - condition: device
            type: is_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet Frühschicht EIN
      - conditions:
          - condition: trigger
            id:
              - "04:30"
          - condition: state
            entity_id: input_select.schicht
            state: Früh
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet Frühschicht AUS
      - conditions:
          - condition: trigger
            id:
              - "05:00"
          - condition: time
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
          - condition: state
            entity_id: input_select.schicht
            state: Normal
          - condition: device
            type: is_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet Normalschicht EIN
      - conditions:
          - condition: trigger
            id:
              - "05:45"
          - condition: state
            entity_id: input_select.schicht
            state: Normal
          - condition: device
            type: is_on
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        sequence:
          - type: turn_off
            device_id: 06aba43d8b1f97867d52fcfe355fb1db
            entity_id: 3b12242da71689bd7391a17be7773731
            domain: switch
        alias: Tablet Normalschicht AUS
mode: single

Was sagt denn die Trace Timeline der Automation?
Der Fehler kann ja eigentlich nur auftreten, wenn 2 Trigger in kürzester Zeit oder gleichzeitig ausgelöst haben.
Schaltest du z.B. die beiden input_booleans gleichzeitig off bzw. den schlafen boolean gleichzeitig mit einem andern?