Skip to content

Commit d647985

Browse files
authored
fix(taskworker) Increase timeouts for deletion tasks (#89541)
We've had a few deletion tasks hit their processing deadlines. Give those tasks more time to complete in. Refs SENTRY-FOR-SENTRY-AKE
1 parent fb992d3 commit d647985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/taskworker/namespaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
deletion_tasks = taskregistry.create_namespace(
1313
"deletions",
14-
processing_deadline_duration=60 * 3,
14+
processing_deadline_duration=60 * 4,
1515
)
1616

1717
deletion_control_tasks = taskregistry.create_namespace(
1818
"deletions.control",
1919
# Deletions can take several minutes, so we have a long processing deadline.
20-
processing_deadline_duration=60 * 3,
20+
processing_deadline_duration=60 * 4,
2121
)
2222

2323
demomode_tasks = taskregistry.create_namespace("demomode")

0 commit comments

Comments
 (0)