Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Fix missing celery redis #430

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ gunicorn # Need gunicorn for running in docker
# mysqlclient==1.4.1 # Installed manually for dependencies
sentry_sdk<1.20.0 # Still using Sentry 9
whitenoise # Need whitenoise for serving files
celery[redis] # We want to allow redis by default
10 changes: 8 additions & 2 deletions docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ amqp==2.5.1
# via kombu
asgiref==3.4.1
# via django
async-timeout==4.0.2
# via redis
atomicwrites==1.3.0
# via promgen (setup.py)
billiard==3.6.1.0
# via celery
celery==4.3.0
# via promgen (setup.py)
celery[redis]==4.3.0
# via
# -r docker/requirements.in
# promgen (setup.py)
certifi==2019.9.11
# via
# requests
Expand Down Expand Up @@ -63,6 +67,8 @@ pytz==2021.3
# django
pyyaml==6.0.1
# via promgen (setup.py)
redis==4.6.0
# via celery
requests==2.25.1
# via
# promgen (setup.py)
Expand Down