diff --git a/.gitlab/templates/pipeline.yaml.tpl b/.gitlab/templates/pipeline.yaml.tpl index 2b3f9f971..363bdbfc3 100644 --- a/.gitlab/templates/pipeline.yaml.tpl +++ b/.gitlab/templates/pipeline.yaml.tpl @@ -431,6 +431,7 @@ integration-cleanup-stacks: - curl -fsSL https://deb.nodesource.com/setup_20.x | bash - - apt-get install -y nodejs - cd integration-tests + - npm ci {{ end }} script: - echo "Destroying CDK stacks with identifier ${IDENTIFIER}..." diff --git a/bottlecap/src/bin/bottlecap/main.rs b/bottlecap/src/bin/bottlecap/main.rs index d9c968327..a860f4afd 100644 --- a/bottlecap/src/bin/bottlecap/main.rs +++ b/bottlecap/src/bin/bottlecap/main.rs @@ -326,7 +326,7 @@ async fn main() -> anyhow::Result<()> { let aws_config = AwsConfig::from_env(start_time); log_fips_status(&aws_config.region); let version_without_next = EXTENSION_VERSION.split('-').next().unwrap_or("NA"); - debug!("Starting Datadog Extension v{version_without_next}"); + debug!("Starting Datadog Extension v{version_without_next}"); // Debug: Wait for debugger to attach if DD_DEBUG_WAIT_FOR_ATTACH is set if let Ok(wait_secs) = env::var("DD_DEBUG_WAIT_FOR_ATTACH") {