NEXT icon indicating copy to clipboard operation
NEXT copied to clipboard

butler.job doesn't work in myApp.py?

Open dconathan opened this issue 7 years ago • 3 comments

It appears butler.job doesn't work for submitting background jobs at the myApp level. This is because butler submits the job without a namespace, so the broker/celery ends up calling apply in tasks.py which calls getattr on App instead of myApp (it seems like normally the only thing that should be calling this is the frontend api)... is this a bug or a design choice, and if the latter is it documented?

dconathan avatar May 03 '17 02:05 dconathan

Sounds like a bug. I would expect this to work regardless of where I call it from.

stsievert avatar May 03 '17 11:05 stsievert

Cool. Thought it'd be as simple as setting the namespace but then it still tries to import the algorithm named butler.alg_label which is None.

dconathan avatar May 04 '17 01:05 dconathan

It's very baked-in that this is only for alg methods. See these lines in tasks.py. Not sure what the most elegant method is. Probably do a if alg_id is None there and if so try to run the app version...

dconathan avatar May 04 '17 01:05 dconathan