Skip to content

Commit 91a892e

Browse files
committed
Adding thread safety info
1 parent 7137af6 commit 91a892e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/InitializationTelemetry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.lang.invoke.MethodType;
66

77
/**
8-
* Wrapper around BootstrapInitializationTelemetry used inside the Datadog ClassLoader.
8+
* Thread safe wrapper around BootstrapInitializationTelemetry used inside the Datadog ClassLoader.
99
*
1010
* <p>Right now, this is needed because of the build separation between the two portions of the
1111
* bootstrap. We should consider adjusting the build to allow Agent et al to reference

dd-java-agent/src/main/java/datadog/trace/bootstrap/BootstrapInitializationTelemetry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.io.IOException;
44
import java.util.concurrent.TimeUnit;
55

6-
/** Telemetry class used to relay information about tracer activation. */
6+
/** Thread safe telemetry class used to relay information about tracer activation. */
77
public abstract class BootstrapInitializationTelemetry {
88
/** Returns a singleton no op instance of initialization telemetry */
99
public static final BootstrapInitializationTelemetry noOpInstance() {

0 commit comments

Comments
 (0)