From 3d6ddac944b5fdad1d6a8565503c3bf910bb004c Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Mon, 11 Apr 2022 18:54:30 -0500 Subject: [PATCH] Celery: workaround fix for bug on retrying builds --- readthedocs/projects/tasks/builds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs/projects/tasks/builds.py b/readthedocs/projects/tasks/builds.py index fe5adb418ab..d94bbd7da39 100644 --- a/readthedocs/projects/tasks/builds.py +++ b/readthedocs/projects/tasks/builds.py @@ -747,6 +747,7 @@ def send_notifications(self, version_pk, build_pk, event): @app.task( base=UpdateDocsTask, bind=True, + ignore_result=True, ) def update_docs_task(self, version_id, build_id, build_commit=None): self.execute()