Astro ERROR: has no future executions anymore

  • Platform information:
    • Hardware: Raspberry PI 3
    • OS: openhabian
    • openHAB version:2.1

Hi all. I already read about this problem and it still occurs. I use Astro to control my rollershutters. The problem is… the event just works once!

2017-11-01 13:22:00.016 [ChannelTriggeredEvent     ] - astro:sun:home03Kuec:set#event triggered START
2017-11-01 13:22:00.035 [ChannelTriggeredEvent     ] - astro:sun:home03Kuec:set#event triggered END
2017-11-01 13:22:00.595 [ItemCommandEvent          ] - Item 'rollershutter_3_A' received command DOWN
2017-11-01 13:22:00.601 [ItemStateChangedEvent     ] - rollershutter_3_A changed from 0 to 100

after that

openhab.log is saying this:

2017-11-01 13:22:00.154 [INFO ] [Manager$ExpressionThreadPoolExecutor] - Expression '0 22 13 1 11 ? 2017' has no future executions anymore
2017-11-01 13:22:00.199 [INFO ] [Manager$ExpressionThreadPoolExecutor] - Expression '0 22 13 1 11 ? 2017' has no future executions anymore

things file:

astro:sun:home03Kuec  [ geolocation="xx.626835,xx.031932,100", interval=60 ]
{
    Channels:
        Type rangeEvent : rise#event [
            offset=30,
            latest="13:23"
        ]
	Type rangeEvent : set#event [
            offset=30,
            latest="13:22"
        ]
}

rules file

rule "Gruppe 3 - Rollladen Kueche"

when
    
	Channel 'astro:sun:home03Kuec:rise#event' triggered START

then

	sendCommand(rollershutter_3_A, UP)

	logInfo("astro channel triggered rise rollershutter_3_A, UP")

end




rule "Gruppe 3 - Rollladen Kueche"

when
    Channel 'astro:sun:home03Kuec:set#event' triggered START
then
sendCommand(rollershutter_3_A, DOWN)
logInfo("astro channel triggered rise rollershutter_3_A, DOWN")
end

If I understand it correctly those events are registered each day NEW again (just after midnight ), that is because the time does shift each day. As the report says the old registered event was due now and will never come again. IMHO there is nothing to worry about.