Skip to content

Commit b1824fa

Browse files
authored
Merge branch 'master' into vzakharov/api_sec_sampling_new
2 parents c842fac + ffa2073 commit b1824fa

File tree

13 files changed

+216
-268
lines changed

13 files changed

+216
-268
lines changed

components/context/src/main/java/datadog/context/Context.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,13 @@
3636
* @see ContextKey
3737
*/
3838
public interface Context {
39-
/**
40-
* Returns the empty context.
41-
*
42-
* @return the context containing no values at all.
43-
*/
44-
static Context empty() {
45-
return EmptyContext.INSTANCE;
46-
}
47-
4839
/**
4940
* Returns the root context.
5041
*
5142
* @return the initial local context that all contexts extend.
5243
*/
5344
static Context root() {
54-
return manager().root();
45+
return EmptyContext.INSTANCE;
5546
}
5647

5748
/**

components/context/src/main/java/datadog/context/ContextManager.java

+2-9
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,10 @@
22

33
/** Manages context across execution units. */
44
public interface ContextManager {
5-
/**
6-
* Returns the root context.
7-
*
8-
* @return the initial local context that all contexts extend.
9-
*/
10-
Context root();
11-
125
/**
136
* Returns the context attached to the current execution unit.
147
*
15-
* @return the attached context; {@link #root()} if there is none.
8+
* @return the attached context; {@link Context#root()} if there is none.
169
*/
1710
Context current();
1811

@@ -28,7 +21,7 @@ public interface ContextManager {
2821
* Swaps the given context with the one attached to current execution unit.
2922
*
3023
* @param context the context to swap.
31-
* @return the previously attached context; {@link #root()} if there was none.
24+
* @return the previously attached context; {@link Context#root()} if there was none.
3225
*/
3326
Context swap(Context context);
3427

components/context/src/main/java/datadog/context/ThreadLocalContextManager.java

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ final class ThreadLocalContextManager implements ContextManager {
55
private static final ThreadLocal<Context[]> CURRENT_HOLDER =
66
ThreadLocal.withInitial(() -> new Context[] {EmptyContext.INSTANCE});
77

8-
@Override
9-
public Context root() {
10-
return EmptyContext.INSTANCE;
11-
}
12-
138
@Override
149
public Context current() {
1510
return CURRENT_HOLDER.get()[0];

components/context/src/test/java/datadog/context/ContextProviderForkedTest.java

-5
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ void testCustomManager() {
4242
// register a NOOP context manager
4343
ContextManager.register(
4444
new ContextManager() {
45-
@Override
46-
public Context root() {
47-
return EmptyContext.INSTANCE;
48-
}
49-
5045
@Override
5146
public Context current() {
5247
return root();

components/context/src/test/java/datadog/context/ContextTest.java

-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package datadog.context;
22

3-
import static datadog.context.Context.empty;
43
import static datadog.context.Context.root;
54
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
65
import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -22,17 +21,6 @@ class ContextTest {
2221
static final ContextKey<Float> FLOAT_KEY = ContextKey.named("float-key");
2322
static final ContextKey<Long> LONG_KEY = ContextKey.named("long-key");
2423

25-
@Test
26-
void testEmpty() {
27-
// Test empty is always the same
28-
Context empty = empty();
29-
assertEquals(empty, empty(), "Empty context should be consistent");
30-
// Test empty is not mutated
31-
String stringValue = "value";
32-
empty.with(STRING_KEY, stringValue);
33-
assertEquals(empty, empty(), "Empty context should be immutable");
34-
}
35-
3624
@Test
3725
void testRoot() {
3826
// Test root is always the same

dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/instrumentation/decorator/WebsocketDecorator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private AgentSpan onFrameStart(
138138
if (useDedicatedTraces) {
139139
wsSpan = startSpan(WEBSOCKET.toString(), operationName, null);
140140
if (inheritSampling) {
141-
wsSpan.setTag(DECISION_MAKER_INHERITED, 1);
141+
wsSpan.setTag(DECISION_MAKER_INHERITED, "1");
142142
wsSpan.setTag(DECISION_MAKER_SERVICE, handshakeSpan.getServiceName());
143143
wsSpan.setTag(DECISION_MAKER_RESOURCE, handshakeSpan.getResourceName());
144144
}

dd-java-agent/instrumentation/kafka-clients-3.8/build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ muzzle {
77
module = "kafka-clients"
88
versions = "[3.8.0,)"
99
assertInverse = true
10+
javaVersion = "17"
1011
}
1112
}
1213

1314
apply from: "$rootDir/gradle/java.gradle"
1415

15-
addTestSuite('latestDepTest')
16+
addTestSuiteForDir('latestDepTest', 'test')
17+
addTestSuiteExtendingForDir('latestDepForkedTest', 'latestDepTest', 'test')
1618

1719
[compileMain_java17Java, compileTestJava, compileLatestDepTestJava].each {
1820
it.configure {
@@ -53,9 +55,9 @@ dependencies {
5355
// Include latest version of kafka itself along with latest version of client libs.
5456
// This seems to help with jar compatibility hell.
5557
latestDepTestImplementation group: 'org.apache.kafka', name: 'kafka_2.13', version: '2.+'
56-
latestDepTestImplementation group: 'org.apache.kafka', name: 'kafka-clients', version: '3.+'
57-
latestDepTestImplementation group: 'org.springframework.kafka', name: 'spring-kafka', version: '3.+'
58-
latestDepTestImplementation group: 'org.springframework.kafka', name: 'spring-kafka-test', version: '3.+'
58+
latestDepTestImplementation group: 'org.apache.kafka', name: 'kafka-clients', version: '+'
59+
latestDepTestImplementation group: 'org.springframework.kafka', name: 'spring-kafka', version: '+'
60+
latestDepTestImplementation group: 'org.springframework.kafka', name: 'spring-kafka-test', version: '+'
5961
latestDepTestImplementation group: 'org.assertj', name: 'assertj-core', version: '3.19.+'
6062
latestDepTestImplementation libs.guava
6163

0 commit comments

Comments
 (0)