Fix merge issue: Pass container network type to WSLAContainerLauncher

constructor
This commit is contained in:
Pooja Trivedi 2025-12-15 12:31:30 -05:00
parent c19e851f52
commit 592439ccfc
1 changed files with 1 additions and 1 deletions

View File

@ -1593,7 +1593,7 @@ class WSLATests
// Create a container.
WSLAContainerLauncher launcher(
"debian:latest", "test-container-exec", {}, {"sleep", "99999"}, {}, ProcessFlags::Stdout | ProcessFlags::Stderr);
"debian:latest", "test-container-exec", {}, {"sleep", "99999"}, {}, WSLA_CONTAINER_NETWORK_TYPE::WSLA_CONTAINER_NETWORK_NONE, ProcessFlags::Stdout | ProcessFlags::Stderr);
auto container = launcher.Launch(*session);