Skip to content
Snippets Groups Projects
Commit 6b8518f2 authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Accumulate sent bytes also in cell handler.

parent 9e3c963d
Branches
No related tags found
No related merge requests found
......@@ -398,6 +398,8 @@ public class CellHandler extends ContextHandler {
final int level = Integer.parseInt(parts[4]);
final short[] data = getCachedVolatileCellData(parts, level);
compressedAccumulation.addAndGet(data.length * 2);
uncompressedAccumulation.addAndGet(data.length * 2);
respondWithShortArray(response, data);
response.setContentType("application/octet-stream");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment