Skip to content

Commit 8814afa

Browse files
authored
Update netty4_version to 4.2.12.Final (#16196)
* Update netty4_version to 4.2.12.Final * Disable endpoint identification algorithm in SSL context * Remove endpoint identification algorithm setting
1 parent 69084bd commit 8814afa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dubbo-dependencies-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<javassist_version>3.30.2-GA</javassist_version>
9696
<byte-buddy_version>1.18.7</byte-buddy_version>
9797
<netty_version>3.2.10.Final</netty_version>
98-
<netty4_version>4.2.10.Final</netty4_version>
98+
<netty4_version>4.2.12.Final</netty4_version>
9999
<httpclient_version>4.5.14</httpclient_version>
100100
<httpcore_version>4.4.16</httpcore_version>
101101
<fastjson_version>1.2.83_noneautotype</fastjson_version>

dubbo-remoting/dubbo-remoting-http3/src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ public static QuicSslContext buildClientSslContext(URL url) {
123123
} catch (Throwable t) {
124124
throw new IllegalArgumentException("Could not find certificate file or the certificate is invalid.", t);
125125
}
126+
builder.endpointIdentificationAlgorithm(null);
126127
try {
127128
return builder.applicationProtocols(Http3.supportedApplicationProtocols())
128129
.build();

0 commit comments

Comments
 (0)