Upgrade to Californium snapshots

Towards Californium SR2 to confirm fix for SPR-17306.
This commit is contained in:
Rossen Stoyanchev
2018-10-23 15:12:05 -04:00
parent 1cb08f5782
commit 42b7c5a79b
2 changed files with 6 additions and 2 deletions

View File

@@ -197,7 +197,10 @@ public class WebSocketIntegrationTests extends AbstractWebSocketIntegrationTests
@Override
public Mono<Void> handle(WebSocketSession session) {
return Flux.never().mergeWith(session.close(CloseStatus.GOING_AWAY)).then();
return session.send(Flux
.error(new Throwable())
.onErrorResume(ex -> session.close(CloseStatus.GOING_AWAY)) // SPR-17306 (nested close)
.cast(WebSocketMessage.class));
}
}