[SOLVED] Rules not running

My rules have stopped working for some reason. I’ve upgraded / updated and I can’t see anything untoward in the logs. The triggering events are happening (eg astro:sunset), but not the rules. My rules code follows - as you can see I’ve changed one of the rules to trigger every 5 seconds for debugging, but that’s not happening either:

rule "Open curtains at 8am"
when
    //Time cron "0 0 8 * *"
    Time cron "0/5 * * * * ?"
then
    //loungeCurtains.sendCommand(ON)
    logInfo("TEST", "Test fired!)
end

rule "Close curtains at sunset"
when
    Channel 'astro:sun:local:set#event' triggered END
then
    loungeCurtains.sendCommand(OFF)
end
logInfo("TEST", "Test fired!")

Oh my word, how did I miss that! Thanks. I guess the update did fix it then (the original ‘correct’ rule wasn’t running and there were framework errors in the log… but now I sound like I’m making excuses) :wink: