Skip to content

Commit

Permalink
Merge #3523 into 2.0.0-M4
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Nov 27, 2024
2 parents 59094e2 + 3143a29 commit 43c8afa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2021-2024 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -55,7 +55,7 @@ protected void decode(ChannelHandlerContext ctx, Buffer in) {
return;
}
ChannelPipeline pipeline = ctx.pipeline();
if (SslHandler.isEncrypted(in)) {
if (SslHandler.isEncrypted(in, false)) {
sslProvider.addSslHandler(ctx.channel(), remoteAddress, sslDebug);
}
else {
Expand Down

0 comments on commit 43c8afa

Please sign in to comment.