update some config

This commit is contained in:
Benny 2022-11-08 18:38:27 +08:00
parent 8fa3cb4aa1
commit db1605efa6
No known key found for this signature in database
GPG Key ID: 6CD0DBDA5235D481
2 changed files with 3 additions and 3 deletions

View File

@ -6,9 +6,9 @@ beautifultable==1.1.0
ffmpeg-python==0.2.0
PyMySQL==1.0.2
celery==5.2.7
filetype==1.1.0
filetype==1.2.0
flower==1.2.0
psutil==5.9.3
psutil==5.9.4
influxdb==5.3.1
beautifulsoup4==4.11.1
fakeredis==1.10.0

View File

@ -46,7 +46,7 @@ REQUIRED_MEMBERSHIP: "str" = os.getenv("REQUIRED_MEMBERSHIP", "")
# celery related
ENABLE_CELERY = os.getenv("ENABLE_CELERY", False)
ENABLE_QUEUE = os.getenv("ENABLE_QUEUE", True)
ENABLE_QUEUE = os.getenv("ENABLE_QUEUE", False)
BROKER = os.getenv("BROKER", f"redis://{REDIS}:6379/4")
MYSQL_HOST = os.getenv("MYSQL_HOST")