From a592bed4693e2c23b28861ecce83187083f0a76c Mon Sep 17 00:00:00 2001 From: Blue Date: Thu, 4 Dec 2025 13:01:30 -0800 Subject: [PATCH] Format --- src/windows/wslaservice/exe/WSLAContainer.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/windows/wslaservice/exe/WSLAContainer.cpp b/src/windows/wslaservice/exe/WSLAContainer.cpp index 4ef6905..3b770e9 100644 --- a/src/windows/wslaservice/exe/WSLAContainer.cpp +++ b/src/windows/wslaservice/exe/WSLAContainer.cpp @@ -21,11 +21,10 @@ using wsl::windows::service::wsla::WSLAContainer; constexpr const char* nerdctlPath = "/usr/bin/nerdctl"; // Constants for required default arguments for "nerdctl run..." -static std::vector defaultNerdctlRunArgs{ - //"--pull=never", // TODO: Uncomment once PullImage() is implemented. - "--net=host", // TODO: default for now, change later - "--ulimit", - "nofile=65536:65536"}; +static std::vector defaultNerdctlRunArgs{//"--pull=never", // TODO: Uncomment once PullImage() is implemented. + "--net=host", // TODO: default for now, change later + "--ulimit", + "nofile=65536:65536"}; WSLAContainer::WSLAContainer(WSLAVirtualMachine* parentVM, ServiceRunningProcess&& containerProcess, const char* name, const char* image) : m_parentVM(parentVM), m_containerProcess(std::move(containerProcess)), m_name(name), m_image(image)