From 725a357e080a4dd7834584922ba577686cc36638 Mon Sep 17 00:00:00 2001 From: Dmitry Kovba Date: Tue, 21 Apr 2026 17:35:54 -0700 Subject: [PATCH] Fix compilation warnings --- Sources/Containerization/LinuxContainer.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Containerization/LinuxContainer.swift b/Sources/Containerization/LinuxContainer.swift index ab8c0fbd..36dea2e3 100644 --- a/Sources/Containerization/LinuxContainer.swift +++ b/Sources/Containerization/LinuxContainer.swift @@ -874,7 +874,7 @@ extension LinuxContainer { agent: agent, vm: startedState.vm, logger: self.logger, - onDelete: { [weak self] in + onDelete: { [weak self = self] in await self?.removeProcess(id: id) } ) @@ -911,7 +911,7 @@ extension LinuxContainer { agent: agent, vm: state.vm, logger: self.logger, - onDelete: { [weak self] in + onDelete: { [weak self = self] in await self?.removeProcess(id: id) } )