Skip to content

Commit 72d770c

Browse files
author
Nitesh Kant
committed
Removed jetty impl module.
Made the /hello endpoint consistent in rxnetty & servlet impl.
1 parent 998cc3a commit 72d770c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

settings.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ include 'ws-backend-mock', \
33
'ws-client', \
44
'ws-impls:ws-impl-utils', \
55
'ws-impls:ws-java-servlet-blocking', \
6-
'ws-impls:ws-java-jetty', \
76
'ws-impls:ws-java-rxnetty'

ws-impls/ws-java-rxnetty/src/main/java/perf/test/rxnetty/StartServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static void main(String[] args) {
6565
startMonitoring();
6666
RxNetty.<ByteBuf, ByteBuf>newHttpServerBuilder(port, (request, response) -> {
6767
try {
68-
if (request.getUri().startsWith("/testHello")) {
68+
if (request.getUri().startsWith("/hello")) {
6969
return routeHello.handle(request, response);
7070
}
7171

0 commit comments

Comments
 (0)