Skip to content

Commit cc60488

Browse files
authored
🔧 chore(ecosystem): resolve SENTRY-3Y8W (#95121)
1 parent 258ca99 commit cc60488

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sentry_plugins/splunk/plugin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ def forward_event(self, event: Event, payload: MutableMapping[str, Any]) -> bool
225225
or (exc.code is not None and (401 <= exc.code <= 404))
226226
# 502s are too noisy.
227227
or exc.code == 502
228+
or exc.code == 405
229+
# Method not allowed for the url
230+
# This is caused by webhook being misconfigured, something we can't fix.
228231
):
229232
return False
230233
raise

0 commit comments

Comments
 (0)