File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
pythonkr_backend/pythonkr_backend/settings Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 195
195
#logfire.instrument_django()
196
196
197
197
# testing
198
- CELERY_ALWAYS_EAGER = True
198
+ CELERY_TASK_ALWAYS_EAGER = True
199
+ CELERY_TASK_EAGER_PROPAGATES = True
Original file line number Diff line number Diff line change 73
73
CELERY_BROKER_USERNAME = os .environ .get ("CELERY_USERNAME" ,"FALSE" )
74
74
CELERY_BROKER_VHOST = os .environ .get ("CELERY_VHOST" ,"FALSE" )
75
75
# Celery Configuration Options
76
- CELERY_ALWAYS_EAGER = False
76
+ CELERY_TASK_ALWAYS_EAGER = False
77
+ CELERY_TASK_EAGER_PROPAGATES = False
77
78
CELERY_TIMEZONE = "Asia/Seoul"
78
79
CELERY_TASK_TRACK_STARTED = True
79
80
CELERY_BROKER_URL = f"amqp://{ CELERY_BROKER_USERNAME } :{ CELERY_BROKER_PASSWORD } @localhost:5672/{ CELERY_BROKER_VHOST } "
You can’t perform that action at this time.
0 commit comments