From 5bb5d120f028543482024bfd0929e72d1ccb0875 Mon Sep 17 00:00:00 2001 From: Wesley Aptekar-Cassels Date: Sat, 18 Mar 2023 15:33:24 -0400 Subject: [PATCH] Set default FLOWER_PORT --- celerywyrm/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celerywyrm/settings.py b/celerywyrm/settings.py index e06b256f5..c1e533ac3 100644 --- a/celerywyrm/settings.py +++ b/celerywyrm/settings.py @@ -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",