File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
quickfixj-core/src/test/java/quickfix/mina/ssl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -545,11 +545,11 @@ public TestConnector(SessionSettings sessionSettings) throws ConfigError {
545
545
546
546
private SessionConnector prepareConnector (SessionSettings sessionSettings ) throws ConfigError {
547
547
SessionConnector sessionConnector = createConnector (sessionSettings );
548
- sessionConnector .setIoFilterChainBuilder (chain -> chain .addLast ( "SSL exception handler" , new IoFilterAdapter () {
548
+ sessionConnector .setIoFilterChainBuilder (chain -> chain .addFirst ( "Exception handler" , new IoFilterAdapter () {
549
549
@ Override
550
550
public void exceptionCaught (NextFilter nextFilter , IoSession session , Throwable cause )
551
551
throws Exception {
552
- LOGGER .info ("SSL exception " , cause );
552
+ LOGGER .info ("exceptionCaught " , cause );
553
553
exceptionThrownLatch .countDown ();
554
554
nextFilter .exceptionCaught (session , cause );
555
555
}
You can’t perform that action at this time.
0 commit comments