[web2py] Re: Scheduler erroring when threading and trying to do database update.

2015-12-02 Thread Benson Myrtil
Was able to get this working. When I created the task, I originally had the application named something else. After renaming the application I forgot to update the application_name on the scheduler_task table. Once I did that it started working. On Monday, November 23, 2015 at 4:33:34 PM UTC-5,

[web2py] Re: Scheduler erroring when threading and trying to do database update.

2015-11-23 Thread Niphlod
without the complete code is hard to see where the exception may raise, but a serious question arises: why should you manage threads inside a scheduler-executed task ? At that level of abstraction, if you NEED to fine-tune code execution at that level, just use a normal web2py shell. Did you t