Skip to content

Commit 2f8c503

Browse files
authored
Merge branch 'master' into dougqh/tagset
2 parents 767af3d + 2c3db21 commit 2f8c503

6 files changed

Lines changed: 5 additions & 25 deletions

File tree

dd-java-agent/instrumentation/mule-4.5/src/test/groovy/mule4/MuleForkedTest.groovy

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ import spock.lang.Shared
2222

2323
class MuleForkedTest extends WithHttpServer<MuleTestContainer> {
2424

25-
// TODO since mule uses reactor core, things sometime propagate to places where they're not closed
26-
@Override
27-
boolean useStrictTraceWrites() {
28-
return false
29-
}
30-
3125
@Override
3226
protected void configurePreAgent() {
3327
super.configurePreAgent()

dd-java-agent/instrumentation/mule-4.5/src/test/groovy/mule4/MuleHttpServerForkedTest.groovy

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ import spock.lang.Shared
99

1010
class MuleHttpServerForkedTest extends HttpServerTest<MuleTestContainer> {
1111

12-
// TODO since mule uses reactor core, things sometime propagate to places where they're not closed
13-
@Override
14-
boolean useStrictTraceWrites() {
15-
return false
16-
}
17-
1812
@Override
1913
boolean testRedirect() {
2014
// Dynamic adding of headers to and HttpResponse from inside a mule application seems

dd-java-agent/instrumentation/opensearch/opensearch-rest-1.0/src/test/groovy/OpensearchRestClientTest.groovy

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ class OpensearchRestClientTest extends InstrumentationSpecification {
3131
@Shared
3232
RestClient client
3333

34-
@Override
35-
boolean useStrictTraceWrites() {
36-
//FIXME IDM
37-
false
38-
}
39-
4034
def setupSpec() {
4135

4236
aosWorkingDir = File.createTempDir("test-aos-working-dir-", "")

dd-java-agent/instrumentation/opensearch/opensearch-transport-1.0/src/test/groovy/OpensearchNodeClientTest.groovy

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ class OpensearchNodeClientTest extends InstrumentationSpecification {
2828

2929
def client = testNode.client()
3030

31-
@Override
32-
boolean useStrictTraceWrites() {
33-
//FIXME IDM
34-
false
35-
}
36-
3731
@Override
3832
protected void configurePreAgent() {
3933
super.configurePreAgent()

internal-api/src/main/java/datadog/trace/api/gateway/InferredProxySpan.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public class InferredProxySpan implements ImplicitContextKeyed {
4747
SUPPORTED_PROXIES = new HashMap<>();
4848
SUPPORTED_PROXIES.put("aws-apigateway", "aws.apigateway");
4949
SUPPORTED_PROXIES.put("aws-httpapi", "aws.httpapi");
50+
SUPPORTED_PROXIES.put("azure-apim", "azure.apim");
5051
}
5152

5253
private final Map<String, String> headers;

internal-api/src/test/java/datadog/trace/api/gateway/InferredProxySpanTests.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,10 @@ void testSupportedProxySystems(String proxySystem, String expectedSpanName) {
241241
}
242242

243243
static Stream<Arguments> supportedProxySystems() {
244-
return Stream.of(of("aws-apigateway", "aws.apigateway"), of("aws-httpapi", "aws.httpapi"));
244+
return Stream.of(
245+
of("aws-apigateway", "aws.apigateway"),
246+
of("aws-httpapi", "aws.httpapi"),
247+
of("azure-apim", "azure.apim"));
245248
}
246249

247250
@Test

0 commit comments

Comments
 (0)