Skip to content

Commit 8c79cba

Browse files
committed
feat(asm): Fix injection check test
1 parent 89292f8 commit 8c79cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-java-agent/instrumentation/jetty-11/src/test/groovy/HttpChannelAppSecTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class HttpChannelAppSecTest extends AgentTestRunner {
7373

7474
@Override
7575
void visitMethodInsn(int opcode, String owner, String name, String descriptor, boolean isInterface) {
76-
if ('datadog/trace/bootstrap/instrumentation/api/AgentSpan' == owner && 'getRequestBlockingAction' == name) {
76+
if ('datadog/trace/instrumentation/jetty/JettyBlockingHelper' == owner && 'hasRequestBlockingAction' == name) {
7777
blockApplied = true
7878
}
7979
super.visitMethodInsn(opcode, owner, name, descriptor, isInterface)

0 commit comments

Comments
 (0)