Skip to content

Commit

Permalink
make api generic
Browse files Browse the repository at this point in the history
  • Loading branch information
Harish Kumar S committed Oct 9, 2019
1 parent bf3d779 commit 20135a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/KituraNet/HTTP/HTTPServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class HTTPServer: Server {
private let maxPendingConnections = 100

/// The event loop group on which the HTTP handler runs
public let eventLoopGroup: MultiThreadedEventLoopGroup
public let eventLoopGroup: EventLoopGroup

var quiescingHelper: ServerQuiescingHelper?

Expand All @@ -145,7 +145,7 @@ public class HTTPServer: Server {
#endif
}

public init(eventLoopGroup: MultiThreadedEventLoopGroup) {
public init(eventLoopGroup: EventLoopGroup) {
self.eventLoopGroup = eventLoopGroup
}

Expand Down

0 comments on commit 20135a1

Please sign in to comment.