-
Notifications
You must be signed in to change notification settings - Fork 972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1 minute scheduling. Seems to crash after 45 minutes #505
Comments
BTW, this is a great program. Simple to implement and very useful. |
Interesting, I have been having a similar issue that I've seemed to narrow down to this as well, although mine is set to every 5 minutes |
I do schedule.every().minute.do(updateObservingConditionsCSV) since i started using schedule, so yes - this works. |
Were you able to find the problem? If not, is there an error when the crash happens? For future reference, Line 161 in ed7d219
|
I was having similar issues and it ended up being a memory leak issue. I was able to correct it by ether forcing garbage collection or by call del <var_name> to remove variables from memory. |
Is it OK to use this format?
schedule.every().minute.do(updateObservingConditionsCSV)
rather than:
schedule.every(1).minutes.do(updateObservingConditionsCSV)
If not ok, might want to update the docs.
I have the thread crashing after 45 minutes and I am trying to localize the issue.
`
The text was updated successfully, but these errors were encountered: