Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 27eb977

Browse files
committedOct 23, 2024·
Add log message if SSL dual mode is enabled (#16437)
* Add log message about dual mode enabled Signed-off-by: Craig Perkins <cwperx@amazon.com> * Add log message about dual mode enabled Signed-off-by: Craig Perkins <cwperx@amazon.com> --------- Signed-off-by: Craig Perkins <cwperx@amazon.com> (cherry picked from commit 8eccbb5) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b771f78 commit 27eb977

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎modules/transport-netty4/src/main/java/org/opensearch/transport/netty4/ssl/SecureNetty4Transport.java

+1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ protected void initChannel(Channel ch) throws Exception {
146146
.map(SecureTransportSettingsProvider.SecureTransportParameters::dualModeEnabled)
147147
.orElse(false);
148148
if (dualModeEnabled) {
149+
logger.info("SSL Dual mode enabled, using port unification handler");
149150
final ChannelHandler portUnificationHandler = new DualModeSslHandler(
150151
settings,
151152
secureTransportSettingsProvider,

0 commit comments

Comments
 (0)
Please sign in to comment.