Skip to content

Commit 92e52e9

Browse files
committed
fix format
1 parent bba254d commit 92e52e9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dd-java-agent/instrumentation/jdbc/src/main/java/datadog/trace/instrumentation/jdbc/StatementInstrumentation.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ public static AgentScope onEnter(
123123
span.setTag(DBM_TRACE_INJECTED, true);
124124
}
125125
}
126-
// For SQL Server and Oracle, trace context is propagated via context_info and v$session.action
127-
// respectively, so we should not also inject it into SQL comments to avoid duplication
126+
// For SQL Server and Oracle, trace context is propagated via
127+
// context_info and v$session.action respectively.
128+
// we should not also inject it into SQL comments to avoid duplication
128129
final boolean injectTraceInComment = injectTraceContext && !isSqlServer && !isOracle;
129130
sql =
130131
SQLCommenter.inject(

0 commit comments

Comments
 (0)