Given: ``` @Scheduled("0 0 5 ? * SUN") public void myJob() {} ``` Changing to: ``` @Scheduled("1h") public void myJob() {} ``` Fails to change the schedule while using a persistence storage like jdbc (seems occurs changing simple to cron)
Given:
Changing to:
Fails to change the schedule while using a persistence storage like jdbc (seems occurs changing simple to cron)