Java-82 Fix test (change port)

This commit is contained in:
mikr 2020-09-24 19:13:13 +02:00
parent 23e39f4244
commit 0fd213eb5d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class SpringSecurity5Application {
HttpHandler handler = WebHttpHandlerBuilder.applicationContext(context)
.build();
ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(handler);
HttpServer httpServer = HttpServer.create().host("localhost").port(8080);
HttpServer httpServer = HttpServer.create().host("localhost").port(8083);
return httpServer.handle(adapter).bindNow();
}