Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ public void sessionClosed(IoSession ioSession) {
throw e;
} finally {
ioSession.removeAttribute(SessionConnector.QF_SESSION);
ioSession.closeOnFlush();
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void sessionCreated(IoSession session) throws Exception {
}

@Override
public void sessionClosed(IoSession ioSession) throws Exception {
public void sessionClosed(IoSession ioSession) {
this.initiatorIoHandler.sessionClosed(ioSession);
}

Expand Down