Skip to content

Commit c6c32eb

Browse files
Fixed some errors that would be printed while running tests that bind to socket paths
Motivation: Binding HTTPBin to a socket path generates many warnings in the console that are largely inconsequential, but cloud the results. This removes one of them 😅 (I'm not sure how to address the others) Modifications: TCP_NODELAY is now a default option in NIO, so we can leave out the setting completely since it isn't supported when binding to socket paths. Result: One fewer warning in the console 🙃
1 parent fe3589d commit c6c32eb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Tests/AsyncHTTPClientTests/HTTPClientTestUtils.swift

-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ internal final class HTTPBin {
234234

235235
self.serverChannel = try! ServerBootstrap(group: self.group)
236236
.serverChannelOption(ChannelOptions.socket(SocketOptionLevel(SOL_SOCKET), SO_REUSEADDR), value: 1)
237-
.childChannelOption(ChannelOptions.socket(IPPROTO_TCP, TCP_NODELAY), value: 1)
238237
.serverChannelInitializer { channel in
239238
channel.pipeline.addHandler(activeConnCounterHandler)
240239
}.childChannelInitializer { channel in

0 commit comments

Comments
 (0)