We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0856060 commit 41e4881Copy full SHA for 41e4881
Sources/AsyncHTTPClient/ConnectionPool/HTTPConnectionPool.swift
@@ -17,6 +17,13 @@ import NIO
17
enum HTTPConnectionPool {
18
struct Connection: Hashable {
19
typealias ID = Int
20
+
21
+ // PLEASE NOTE:
22
+ // The HTTP/1.1 connection code here is commented out, for a sad and simple reason: We
23
+ // don't have a HTTP1Connection yet. As soon as the HTTP1Connection has landed
24
+ // (https://github.com/swift-server/async-http-client/pull/400) we will enable
25
+ // HTTP1Connections here. Landing the connection box now enables us to already review the
26
+ // ConnectionPool StateMachines.
27
28
private enum Reference {
29
// case http1_1(HTTP1Connection)
0 commit comments