With the current version 4.3.0.M2 (and 4.3.0.M1) on my installation all of a sudden no rule is triggered anymore.
Even the most simple one which is based on a manual virtual switch the rule does not trigger
configuration: {}
triggers:
- id: "1"
configuration:
itemName: TestTrigger2
type: core.ItemCommandTrigger
conditions: []
actions:
- inputs: {}
id: "2"
configuration:
type: application/javascript
script: console.info('abc');
type: script.ScriptAction```
- When I change the switch the logs clearly show the state change
2024-11-10 08:08:03.827 [INFO ] [openhab.event.ItemCommandEvent ] - Item 'TestTrigger2' received command ON
2024-11-10 08:08:03.828 [INFO ] [openhab.event.ItemStateUpdatedEvent ] - Item 'TestTrigger2' updated to ON
2024-11-10 08:08:03.828 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'TestTrigger2' changed from OFF to ON
- When I run the rule directly, it works
2024-11-10 08:07:40.984 [INFO ] [nhab.automation.script.ui.1_radio_js] - abc
This is true for all of my rules currently.
- It started happening while I was on M1, so I updated to M2 without any success.
- I have restarted several times
- I have cleaned the cache, restarted and rebooted, no success
- Even a cron time based trigger does not work anymore
- id: "3"
configuration:
cronExpression: 0/5 * * * * ? *
type: timer.GenericCronTrigger
Can maybe someone of the maintainers give me a hint, where I can set a breakpoint to debug why the events due not trigger any rule anymore (e.g. ItemStateTriggerHandler?) as I am out of ideas…