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
In app.blueprints.rest.dim_task_routes celery tasks results are retrieved in the database.
In app.blueprints.pages.dim_tasks.dim_tasks, the task result is retrieved from its identifier thanks to the Celery AsyncResult object.
It would improve code regularity to access dim tasks results always through the same mechanism (most probably always going through the database, as Celery does not provide any public API to list all task results) and group the code down into the business layer.
The text was updated successfully, but these errors were encountered:
In
app.blueprints.rest.dim_task_routes
celery tasks results are retrieved in the database.In
app.blueprints.pages.dim_tasks.dim_tasks
, the task result is retrieved from its identifier thanks to the Celery AsyncResult object.It would improve code regularity to access dim tasks results always through the same mechanism (most probably always going through the database, as Celery does not provide any public API to list all task results) and group the code down into the business layer.
The text was updated successfully, but these errors were encountered: