Skip to content

Commit dc9a947

Browse files
authored
fix(aci): Retry process_workflows_event timeouts (#95737)
Now that we're on taskbroker, we need this to preserve the old behavior.
1 parent e34d155 commit dc9a947

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sentry/workflow_engine/tasks/workflows.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from sentry.utils import metrics
1616
from sentry.workflow_engine.models import Detector
1717
from sentry.workflow_engine.processors.workflow import process_workflows
18-
from sentry.workflow_engine.tasks.utils import build_workflow_event_data_from_event
18+
from sentry.workflow_engine.tasks.utils import build_workflow_event_data_from_event, retry_timeouts
1919
from sentry.workflow_engine.types import WorkflowEventData
2020
from sentry.workflow_engine.utils import log_context
2121

@@ -128,6 +128,7 @@ def workflow_status_update_handler(
128128
),
129129
),
130130
)
131+
@retry_timeouts
131132
@retry
132133
def process_workflows_event(
133134
project_id: int,

0 commit comments

Comments
 (0)