Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
  • Loading branch information
jbescos committed Jun 25, 2020
1 parent 93b9605 commit 70975ce
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ public ServletOutputStream getOutputStream() throws IOException {
public PrintWriter getWriter() throws IOException {
return responseWriter;
}

@Override
public void flushBuffer() throws IOException {
getOutputStream().flush();
}
});
} catch (final Exception e) {
throw new ContainerException(e);
Expand Down

0 comments on commit 70975ce

Please sign in to comment.