Zwave Locks Lights missing Action time

I have a pair of Schlage zwave locks to lock at 11PM. Sometime, not all locks lock. Locks are about 15ft or less away from HA Zwave. Below is my code.
Also had similar issues with Outdoor lights not coming on. I have included that code as well.

Any suggestions?

alias: Lock Doors
description: ""
triggers:
  - trigger: time
    at: "23:00:00"
conditions: []
actions:
  - action: lock.lock
    metadata: {}
    data: {}
    target:
      entity_id: lock.exterior_doors
mode: single

alias: Outdoor Lights On at Sunset, Off at 11PM
description: ""
triggers:
  - id: "off"
    at: "23:00:00"
    trigger: time
  - trigger: sun
    event: sunset
    offset: 0
    id: "on"
conditions: []
actions:
  - choose:
      - conditions:
          - condition: template
            value_template: "{{ trigger.id == 'on'}}"
        sequence:
          - action: light.turn_on
            metadata: {}
            data: {}
            target:
              entity_id: light.outdoor_lights
      - conditions:
          - condition: template
            value_template: "{{trigger.id == 'off'}}"
        sequence:
          - action: light.turn_off
            metadata: {}
            data: {}
            target:
              entity_id: light.outdoor_lights
    default: []

Missed actions indicate issues in your ZWave network. Have you tried repairing the routes from the device?

New to zwave. How?
I am seeing this for the routes.

Probably not an answer, but in case your lock group is messing you up and you only have those 2 locks, I would use this:


  actions:
    - action: lock.lock
      target:
        entity_id: all
      data:
        code: 123456

would i need to create a lock code?

I think it’s optional.
Years ago it was required and I kept mine, but you didn’t have it, so probably not.

My point was the ‘all’ part, it locks 3 for me and if I add another it will just pick that one up as well.