Skip to content

Commit ba87c2e

Browse files
committed
Moved my public NIOTSEventLoop to another branch
1 parent de53f0f commit ba87c2e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let package = Package(
2424
.package(url: "https://github.com/apple/swift-nio.git", from: "2.13.1"),
2525
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.7.0"),
2626
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.3.0"),
27-
.package(url: "https://github.com/adam-fowler/swift-nio-transport-services.git", .branch("master")),
27+
.package(url: "https://github.com/adam-fowler/swift-nio-transport-services.git", .branch("public-niots-eventloop")),
2828
],
2929
targets: [
3030
.target(

Sources/AsyncHTTPClient/Utils.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
import Foundation
16+
#if canImport(Network)
1617
import Network
18+
#endif
1719
import NIO
1820
import NIOHTTP1
1921
import NIOHTTPCompression

Tests/AsyncHTTPClientTests/HTTPClientTests+XCTest.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ extension HTTPClientTests {
9797
("testRacePoolIdleConnectionsAndGet", testRacePoolIdleConnectionsAndGet),
9898
("testAvoidLeakingTLSHandshakeCompletionPromise", testAvoidLeakingTLSHandshakeCompletionPromise),
9999
("testAsyncShutdown", testAsyncShutdown),
100+
("testCorrectEventLoopGroup", testCorrectEventLoopGroup)
100101
]
101102
}
102103
}

0 commit comments

Comments
 (0)