Skip to content
Open
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 @@ -456,7 +456,11 @@ protected void writeResponseBody(Representation entity, OutputStream responseEnt
// Send the entity to the client
if (responseEntityStream != null) {
entity.write(responseEntityStream);
responseEntityStream.flush();
try {
responseEntityStream.flush();
} catch (IOException ioe) {
getLogger().log(Level.FINE, "Unable to flush the entity stream.", ioe);
}
}
}

Expand Down