Skip to content

Commit

Permalink
pull request review changes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
hklarner committed Sep 6, 2023
1 parent ab3d95a commit 30a6e10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ local-a4:

.PHONY: celery-worker-start
celery-worker-start:
$(VIRTUAL_ENV)/bin/celery --app adhocracy-plus worker
$(VIRTUAL_ENV)/bin/celery --app adhocracy-plus worker --loglevel INFO


.PHONY: celery-worker-status
Expand Down
3 changes: 1 addition & 2 deletions adhocracy-plus/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
"apps.polls",
"apps.topicprio",
"apps.debate",
"celery",
)

MIDDLEWARE = (
Expand Down Expand Up @@ -559,5 +558,5 @@

# Celery configuration
CELERY_BROKER_URL = "redis://localhost:6379"
CELERY_RESULT_BACKEND = "redis"
CELERY_RESULT_BACKEND = "redis://localhost:6379"
CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = True
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ whitenoise==6.4.0
xmltodict==0.13.0
zeep==4.2.1
urllib3==2.0.3
redis==5.0.0

# Inherited a4-core requirements
Django==3.2.19
Expand All @@ -27,4 +28,3 @@ jsonfield==3.1.0
python-dateutil==2.8.2
rules==3.3
celery==5.3.1
redis==5.0.0

0 comments on commit 30a6e10

Please sign in to comment.