Skip to content
Merged
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 @@ -61,6 +61,13 @@ protected ResourceResponse newResourceResponse(final Attributes attributes) {
service.backChannelLogout(logoutToken, request.getRequestURL().toString());

response.setStatusCode(Response.Status.OK.getStatusCode());
response.setWriteCallback(new WriteCallback() {

@Override
public void writeData(final Attributes atrbts) {
// No response body
}
});
} catch (Exception e) {
LOG.error("While requesting back-channel logout for token {}", logoutToken, e);

Expand Down
Loading