We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1436777 commit 77fdb04Copy full SHA for 77fdb04
Sources/AsyncHTTPClient/ConnectionPool/HTTPConnectionPool.swift
@@ -18,6 +18,13 @@ 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)
30
0 commit comments