You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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...
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 onApp
instead ofmyApp
(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?The text was updated successfully, but these errors were encountered: