Set default FLOWER_PORT

This commit is contained in:
Wesley Aptekar-Cassels 2023-03-18 15:33:24 -04:00
parent b3d3de5374
commit 5bb5d120f0

View file

@ -29,7 +29,7 @@ CELERY_TIMEZONE = env("TIME_ZONE", "UTC")
CELERY_WORKER_CONCURRENCY = env("CELERY_WORKER_CONCURRENCY", None)
CELERY_TASK_SOFT_TIME_LIMIT = env("CELERY_TASK_SOFT_TIME_LIMIT", None)
FLOWER_PORT = env("FLOWER_PORT")
FLOWER_PORT = env.int("FLOWER_PORT", 8888)
INSTALLED_APPS = INSTALLED_APPS + [
"celerywyrm",