Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down