Skip to content

Commit

Permalink
Merged main
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasm-ttd committed May 6, 2024
2 parents 382e39a + 0ec54b6 commit a8df7e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uid2</groupId>
<artifactId>uid2-operator</artifactId>
<version>5.32.2-alpha-106-SNAPSHOT</version>
<version>5.32.4</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import io.vertx.core.Promise;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.http.HttpHeaders;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.core.http.HttpServerResponse;
import io.vertx.core.json.DecodeException;
import io.vertx.core.json.JsonArray;
Expand Down Expand Up @@ -185,7 +184,7 @@ public void start(Promise<Void> startPromise) throws Exception {

final Router router = createRoutesSetup();
final int port = Const.Port.ServicePortForOperator + Utils.getPortOffset();
vertx.createHttpServer(new HttpServerOptions().addEnabledSecureTransportProtocol("TLSv1.3"))
vertx.createHttpServer()
.requestHandler(router)
.listen(port, result -> {
if (result.succeeded()) {
Expand Down

0 comments on commit a8df7e3

Please sign in to comment.