Skip to content

Commit

Permalink
fix(fargate): fix configuration for Datadog agent (#2393)
Browse files Browse the repository at this point in the history
- Set a placeholder value for DD_API_KEY to ensure the container starts for tests that don't use Datadog tracing
- Fix typo in configuration env var
  • Loading branch information
InesNi authored Jan 3, 2024
1 parent 2531936 commit fb0b4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/artillery/lib/platform/aws-ecs/legacy/run-cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ async function ensureTaskExists(context) {
environment: [
{
name: 'DD_API_KEY',
value: ''
value: 'placeholder'
},
{
name: 'DD_OTLP_CONFIG_TRACES_ENABLED',
Expand All @@ -1100,7 +1100,7 @@ async function ensureTaskExists(context) {
value: '0.0.0.0:4318'
},
{
name: 'DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_GCPR_ENDPOINT',
name: 'DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_GRPC_ENDPOINT',
value: '0.0.0.0:4317'
},
{
Expand Down

0 comments on commit fb0b4c6

Please sign in to comment.