[web2py] Re: using scheduler: entry in scheduler_run "disappears"

2013-04-24 Thread Niphlod
no probl, submit ideas too ^_^ On Wednesday, April 24, 2013 8:45:39 PM UTC+2, DeanK wrote: > > haha brilliant. Thanks for the quick response. > > My task only operates on the db and internally after an external matlab > call to chug on data so i wasn't returning anything. A simple return 1 did

[web2py] Re: using scheduler: entry in scheduler_run "disappears"

2013-04-24 Thread DeanK
haha brilliant. Thanks for the quick response. My task only operates on the db and internally after an external matlab call to chug on data so i wasn't returning anything. A simple return 1 did the trick. Also I'm using your ComfortScheduler plugin that i found while searching the message bo

[web2py] Re: using scheduler: entry in scheduler_run "disappears"

2013-04-24 Thread Niphlod
it's by design if the function doesn't return a value, then you don't need a record to store the result ^_^ try returning something from your function and you'll see that the record will remain. e.g. you have def mytask(): # do something switch it to def mytask(): #-