Skip to content

Commit b114027

Browse files
authored
feat(issue-summary) Route autofixability requests to severity (#88120)
looks like #87822 accidentally routed requests [back to autofix](https://github.com/getsentry/sentry/pull/87822/files#diff-65696416b6b3efa357f5399b595982a8ad2781a85922ebbdb1ab8841a483c8e0R123) pods. this didn't cause errors, but it should be on severity
1 parent 978fa30 commit b114027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/seer/issue_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _generate_fixability_score(group_id: int):
120120
)
121121

122122
response = requests.post(
123-
f"{settings.SEER_AUTOFIX_URL}{path}",
123+
f"{settings.SEER_SEVERITY_URL}{path}",
124124
data=body,
125125
headers={
126126
"content-type": "application/json;charset=utf-8",

0 commit comments

Comments
 (0)