Skip to content

Commit

Permalink
Update to latest JPMS changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jun 27, 2024
1 parent 299606c commit f03c37d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public ManagedChannel build() {
SslContextProvider provider;
try {
// options, Collections.singletonList(HttpVersion.HTTP_2.alpnName())
SslContextManager helper = new SslContextManager(NetServerImpl.resolveEngineOptions(options.getSslEngineOptions(), true));
SslContextManager helper = new SslContextManager(SslContextManager.resolveEngineOptions(options.getSslEngineOptions(), true));
provider = helper
.resolveSslContextProvider(options.getSslOptions(), "", null, Collections.singletonList(HttpVersion.HTTP_2.alpnName()), other)
.toCompletionStage()
Expand Down
2 changes: 1 addition & 1 deletion vertx-grpc/src/main/java/io/vertx/grpc/VertxServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private ActualServer(VertxInternal vertx,
ContextInternal other = vertx.createWorkerContext();
SslContextProvider provider;
try {
SslContextManager helper = new SslContextManager(NetServerImpl.resolveEngineOptions(options.getSslEngineOptions(), true));
SslContextManager helper = new SslContextManager(SslContextManager.resolveEngineOptions(options.getSslEngineOptions(), true));
provider = helper
.resolveSslContextProvider(options.getSslOptions(), "", options.getClientAuth(), Collections.singletonList(HttpVersion.HTTP_2.alpnName()), other)
.toCompletionStage()
Expand Down

0 comments on commit f03c37d

Please sign in to comment.