Skip to content

Commit c24f026

Browse files
committed
Upgrade to Californium-BUILD-SNAPSHOT
See spring-projectsgh-15878
1 parent 72c8e5d commit c24f026

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

spring-boot-project/spring-boot-dependencies/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<quartz.version>2.3.0</quartz.version>
149149
<querydsl.version>4.2.1</querydsl.version>
150150
<rabbit-amqp-client.version>5.4.3</rabbit-amqp-client.version>
151-
<reactor-bom.version>Californium-SR4</reactor-bom.version>
151+
<reactor-bom.version>Californium-BUILD-SNAPSHOT</reactor-bom.version>
152152
<rest-assured.version>3.1.1</rest-assured.version>
153153
<reactive-streams.version>1.0.2</reactive-streams.version>
154154
<rxjava.version>1.3.8</rxjava.version>

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactoryTests.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@ public void sslRestrictedProtocolsEmptyCipherFailure() throws Exception {
214214
.isThrownBy(() -> testRestrictedSSLProtocolsAndCipherSuites(
215215
new String[] { "TLSv1.2" },
216216
new String[] { "TLS_EMPTY_RENEGOTIATION_INFO_SCSV" }))
217-
.isInstanceOfAny(SSLHandshakeException.class, SocketException.class);
217+
.isInstanceOfAny(SSLException.class, SSLHandshakeException.class,
218+
SocketException.class);
218219
}
219220

220221
@Test

0 commit comments

Comments
 (0)