just found a solution here:
it just didn't work for me
@bcopeland:
Well, I'm sorry to bother you with this, but I have a new error:
(using the built-in system driver).
what hub version are you on?
Version 2.2.2.126
also
Version 2.2.2.126
but i noticed it already at least 3 versions ago. and its possibly much longer then that.
so it is not new error introduced in latest updates
Your issue is different.. Yours is from a the community driver and the fact that it didn’t unschedule the clockSync.. If you go back to the other thread and look further down there is code that will work to clear your schedule
metadata {
definition (name: "Scheduled Job Cleanup", namespace: "djdizzyd", author: "Bryan Copeland") {
capability "Actuator"
command "clearSchedule"
}
preferences {
}
}
void clearSchedule() {
unschedule()
}
There was a typo in the original post
Grab that code I just pasted above your post .. unschedule() was spelled wrong in the one you are running..