Skip to content

Commit

Permalink
minor rename
Browse files Browse the repository at this point in the history
  • Loading branch information
trentjeff committed Sep 25, 2023
1 parent f7caf28 commit d2dac6d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ class NettyWebServer implements WebServer {
webServerTls
.map(WebServerTls::manager)
.ifPresent(manager -> manager.subscribe(newCtx -> {
SslContext newSslCts = createSslContext(webServerTls.get(), newCtx);
childHandler.updateSslContext(newSslCts);
SslContext newSslCtx = createSslContext(webServerTls.get(), newCtx);
childHandler.updateSslContext(newSslCtx);
}));
}

Expand Down

0 comments on commit d2dac6d

Please sign in to comment.