Skip to content

Commit f61ac70

Browse files
committed
Merge remote-tracking branch 'origin/feat/support-jfinal' into feat/support-jfinal
Change-Id: I49595e0b48a44439e05262aaccd9b340ae4f414a
2 parents 5f55199 + 85cc395 commit f61ac70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

instrumentation/jfinal-3.6/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/jfinal/v3_6/ActionHandlerInstrumentation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public static AdviceScope onEnter() {
8080

8181
@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
8282
public static void stopTraceOnResponse(
83-
@Advice.Thrown @Nullable Throwable throwable, @Advice.Enter @Nullable AdviceScope actionScope) {
83+
@Advice.Thrown @Nullable Throwable throwable,
84+
@Advice.Enter @Nullable AdviceScope actionScope) {
8485
if (actionScope != null) {
8586
actionScope.end(throwable);
8687
}

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,6 @@ include(":instrumentation:xxl-job:xxl-job-common:javaagent")
693693
include(":instrumentation:xxl-job:xxl-job-common:testing")
694694
include(":instrumentation:zio:zio-2.0:javaagent")
695695

696-
697696
// benchmark
698697
include(":benchmark-overhead-jmh")
699698
include(":benchmark-jfr-analyzer")

0 commit comments

Comments
 (0)