ZWave Ghost turns off switch after being turned on by rule

Hey All-

Running openhab2 (2.4.0-1) on a RaspberryPi and java version “1.8.0_65”.

I am using a rule to turn on (and off) a light using Astro bindings.

rule “Outside Lights On”
when
Channel ‘astro:sun:local:set#event’ triggered START
then
sendCommand(Porch, 22)
sendCommand(Garden, ON)
sendCommand(Garage, ON)
end

Openhab more often then not does exactly as I expect with the exception of Garage, which is inexplicably turned off approximately 10 seconds after being turned on. This rule has previously worked flawlessly and only really started becoming a problem after adding another Zwave switch 30 feet away.

2019-03-07 18:02:00.087 [ome.event.ItemCommandEvent] - Item ‘Garage’ received command ON
2019-03-07 18:02:00.120 [nt.ItemStatePredictedEvent] - Garage predicted to become ON
2019-03-07 18:02:00.137 [vent.ItemStateChangedEvent] - Garage changed from OFF to ON
2019-03-07 18:02:10.156 [vent.ItemStateChangedEvent] - Garage changed from ON to OFF

Thoughts?