yeah, i realize that something i'm lacked off, unfortunately, i don't know where is it. tried again using your code but still no luck
started from scratch
models\db_wizard_0.py
db.define_table('asdf',
Field('asdf'),
auth.signature )
models\scheduler.py
from gluon.scheduler import Scheduler
def demo1():
db.asdf.insert(asdf = 'asdf')
db.commit()
mysched = Scheduler(db, tasks = dict(demo1 = demo1) )
controlelrs\test.py
def queue_task():
mysched.queue_task('demo1')
"""
mysched.queue_task('demo1', prevent_drift = True,
repeats = 0, period = 5)
"""
command prompt
cd C:\web2py
python web2py.py -K test -X
checked the scheduler_task, scheduler_worker and asdf tables via appadmin.
count to 5 or 10 and then refresh the scheduler_task, scheduler_worker and asdf tables on appadmin.
nothing happen
i even created the scheduler_task manually from appadmin (
http://127.0.0.1:8000/test/appadmin/insert/db/scheduler_task), but still no luck (no error occured, but the scheduler didn't run).
execute the test controller (
http://127.0.0.1:8000/test/test/queue_task) got the same result.
for testing purpose, i set the period = 5, so that, i don't have to long waiting for the task execute by the scheduler.
i'm running on windows 7 64 bit, with web2py latest source code version, python 2.7.
any idea, where is my mistake on code above or step i took to run the scheduler?