tadas
Results
2
issues of
tadas
using: python 3.5 celery 4.0.2 The example code from celery website: ``` class CustomTask(Task): def run(self): print('running') CustomTask = celery_app.register_task(CustomTask()) @celery_app.task(bind=True, base=CustomTask) def custom(self): print('running') ``` Part of stacktrace: ```...
Status: Not a Bug
I need to add `dependency` on a `'type': 'list'`, but the current implementation does not allow me to do that. I cannot use the `dot` notation as `my_field` is dependent...