Skip to content

Commit 9135f11

Browse files
authored
feat(crash-detection): Ignore Java GraphQL instrumentExecutionResultComplete (#96509)
1 parent 1ba28d6 commit 9135f11

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/sentry/utils/sdk_crashes/sdk_crash_detection_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,10 @@ def build_sdk_crash_detection_configs() -> Sequence[SDKCrashDetectionConfig]:
289289
module_pattern="io.sentry.graphql.SentryInstrumentation",
290290
function_pattern="lambda$instrumentExecutionResult$0",
291291
),
292+
FunctionAndModulePattern(
293+
module_pattern="io.sentry.graphql.SentryGraphqlInstrumentation",
294+
function_pattern="instrumentExecutionResultComplete",
295+
),
292296
},
293297
)
294298
configs.append(java_config)

0 commit comments

Comments
 (0)