mirror of
https://github.com/apple/container.git
synced 2026-09-26 09:35:37 +00:00
LinuxContainer: Fix build break (#218)
Crummy rebase that didn't pickup the Mutex changes
This commit is contained in:
@@ -327,8 +327,8 @@ extension LinuxContainer {
|
||||
|
||||
/// Hostname mapping configurations for the container.
|
||||
public var hosts: Hosts? {
|
||||
get { config.hosts }
|
||||
set { config.hosts = newValue }
|
||||
get { config.withLock { $0.hosts } }
|
||||
set { config.withLock { $0.hosts = newValue } }
|
||||
}
|
||||
|
||||
/// Unix sockets to share into or out of the container.
|
||||
|
||||
Reference in New Issue
Block a user