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

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 datadog_checks_dev/changelog.d/21209.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix wait_for_health flag win docker_run
2 changes: 2 additions & 0 deletions datadog_checks_dev/datadog_checks/dev/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ def docker_run(
composeFileArgs = {'compose_file': compose_file, 'build': build, 'service_name': service_name}
if capture is not None:
composeFileArgs['capture'] = capture
if waith_for_health:
composeFileArgs['waith_for_health'] = waith_for_health
set_up = ComposeFileUp(**composeFileArgs)
if down is not None:
tear_down = down
Expand Down
Loading