We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c5262 commit c65e892Copy full SHA for c65e892
Sources/APIServer/Containers/ContainersService.swift
@@ -84,9 +84,7 @@ actor ContainersService {
84
/// List all containers registered with the service.
85
public func list() async throws -> [ContainerSnapshot] {
86
self.log.debug("\(#function)")
87
- return await lock.withLock { context in
88
- Array(await self.containers.values)
89
- }
+ return Array(self.containers.values)
90
}
91
92
/// Execute an operation with the current container list while maintaining atomicity
0 commit comments