diff --git a/Sources/NIOPosix/PosixSingletons.swift b/Sources/NIOPosix/PosixSingletons.swift index 0f82ff2920..5f47e25167 100644 --- a/Sources/NIOPosix/PosixSingletons.swift +++ b/Sources/NIOPosix/PosixSingletons.swift @@ -117,6 +117,6 @@ private let globalPosixBlockingPool: NIOThreadPool = { numberOfThreads: NIOSingletons.blockingPoolThreadCountSuggestion, threadNamePrefix: "SGLTN-TP-#" ) - _ = Unmanaged.passUnretained(pool).retain() // never gonna let you down. + _ = Unmanaged.passRetained(pool) // never gonna let you down. return pool }()