Tom White

Results 4 issues of Tom White

A document with the following structure will crash MongoEngine 0.24.0 ```python class MyDoc(Document): fld = GenericReferenceField() meta = { "indexes": [{"fields": ["fld._ref.$id"]}] } ``` This type of index was fine...

Currently, calling a task with arguments and kwarguments results in something like this: ``` >>> task.args [True] >>> task.kwargs {'arg1': 'some_string', 'arg2': False} ``` This is a bit of a...

When I use `stopwait` to stop running workers, it waits correctly, but the last task to run does not get its status updated to `SUCCESS`, it remains `STARTED`, even when...

[`django-socketio`](https://github.com/stephenmcd/django-socketio) provides a simple way to use asynchronous communication using websockets. This would be preferential to polling every 5 seconds.

enhancement