If I provide args like following: ... my_id = db.my_inventory.insert(...)
db.scheduler_task.insert( ... args=dumps(['my_id']), ...) ... I see exactly this 'my_id' as textual string on my newly created task, looking it via appadmin. How to make my task to get numerical data to be able to do operations for that particular row on db? --