Error occurred when importing from Trello

Hi there,

It is the other way around, config.py overwrites common.py, so it’s okay to just change stuff in config.py.

From the logs, it seems that maybe your celery and rabbitmq configuration may not be working correctly? Could you share your related config?

It should look something like this:

#########################################
## TAIGA ASYNC
#########################################

CELERY_ENABLED = True
CELERY_WORKER_MAX_TASKS_PER_CHILD = 100

from kombu import Queue  # noqa

CELERY_BROKER_URL = "..."
CELERY_TIMEZONE = "UTC"

CELERY_TASK_ROUTES = {
   "taiga.export_import.tasks.dump_project": {"queue": "exporter"},
   "taiga.export_import.tasks.load_project_dump": {"queue": "importer"},
   "taiga.export_import.tasks.delete_project_dump": {"queue": "exporter"},
}

Best regards!

1 Like