postgres-nio
postgres-nio copied to clipboard
The new connect syntax appears to be missing an option for unix domain sockets
The new connect syntax calls one of the following swift-nio connect functions:
func connect(host: String, port: Int) -> EventLoopFuture<Channel>
func connect(to address: SocketAddress) -> EventLoopFuture<Channel>
it dosen't call the third:
func connect(unixDomainSocketPath: String) -> EventLoopFuture<Channel>