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
1 change: 1 addition & 0 deletions .gitlab/templates/pipeline.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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}..."
Expand Down
2 changes: 1 addition & 1 deletion bottlecap/src/bin/bottlecap/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down
Loading