Skip to content

Commit

Permalink
updated result backend env
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-wu1 committed Jul 12, 2024
1 parent c5c20de commit 04ddb92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def create_app(debug: bool = False) -> Flask:
app.config.from_mapping(
CELERY=dict(
broker_url="sqs://",
result_backend=f"redis://{os.getenv('CELERY_RESULT_BACKEND')}/0",
result_backend=os.getenv("CELERY_RESULT_BACKEND"),
task_ignore_result=True,
task_default_queue = "dirtviz-task-queue",
broker_transport_options={
Expand Down

0 comments on commit 04ddb92

Please sign in to comment.