Skip to content

Commit 361a624

Browse files
committed
Fix rebase
1 parent 49e08ec commit 361a624

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Sources/HTTPServer/HTTPServerRequestHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public protocol HTTPServerRequestHandler: Sendable {
9898
/// - Throws: Any error encountered during request processing or response generation.
9999
func handle(
100100
request: HTTPRequest,
101-
requestContext: RequestContext,
101+
requestContext: HTTPRequestContext,
102102
requestBodyAndTrailers: consuming sending ConcludingRequestReader,
103103
responseSender: consuming sending HTTPResponseSender<ConcludingResponseWriter>
104104
) async throws

Tests/HTTPServerTests/HTTPServerTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ struct HTTPServerTests {
99
@available(macOS 26.0, iOS 26.0, watchOS 26.0, tvOS 26.0, visionOS 26.0, *)
1010
func testConsumingServe() async throws {
1111
let server = NIOHTTPServer<HTTPServerClosureRequestHandler<
12-
HTTPServerRequestContext,
1312
HTTPRequestConcludingAsyncReader,
1413
HTTPRequestConcludingAsyncReader.RequestBodyAsyncReader,
1514
HTTPResponseConcludingAsyncWriter,

0 commit comments

Comments
 (0)