diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 47c9b66df6d..1ee377164c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -521,7 +521,7 @@ muzzle-dep-report: CI_USE_TEST_AGENT: "true" CI_AGENT_HOST: local-agent services: - - name: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.24.1 + - name: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.11.0 alias: local-agent variables: LOG_LEVEL: "DEBUG" diff --git a/dd-trace-core/src/test/groovy/datadog/trace/TracerConnectionReliabilityTest.groovy b/dd-trace-core/src/test/groovy/datadog/trace/TracerConnectionReliabilityTest.groovy index c213bb6dc54..3ebe2a6ed4e 100644 --- a/dd-trace-core/src/test/groovy/datadog/trace/TracerConnectionReliabilityTest.groovy +++ b/dd-trace-core/src/test/groovy/datadog/trace/TracerConnectionReliabilityTest.groovy @@ -116,7 +116,7 @@ class TracerConnectionReliabilityTest extends DDSpecification { def startTestAgentContainer() { //noinspection GrDeprecatedAPIUsage Use FixedHostPortGenericContainer against deprecation because we need to know the exposed to configure the tracer at start - def agentContainer = new FixedHostPortGenericContainer("ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.24.1") + def agentContainer = new FixedHostPortGenericContainer("ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.11.0") .withFixedExposedPort(agentContainerPort, DEFAULT_TRACE_AGENT_PORT) .withEnv("ENABLED_CHECKS", "trace_count_header,meta_tracer_version_header,trace_content_length") .waitingFor(Wait.forHttp("/test/traces"))