Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Sources/SwiftPMBuildServer/SwiftPMBuildServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ package extension Connection {
)
}

// Disfavor this over Connection.send implemented in swift-tools-protocols by https://github.com/swiftlang/swift-tools-protocols/pull/28
// TODO: Remove this method once we have updated the swift-tools-protocols dependency to include #28
@_disfavoredOverload
func send<R: RequestType>(_ request: R) async throws -> R.Response {
return try await withCancellableCheckedThrowingContinuation { continuation in
return self.send(request) { result in
Expand Down
Loading