Skip to content

Commit e8eaef7

Browse files
committed
fix DataGroupWriter not flushing data when needed.
1 parent a9bc0ea commit e8eaef7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/firefly/java/edu/caltech/ipac/firefly/server/util/ipactable/DataGroupWriter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public void run() {
109109
IpacTableUtil.writeAttributes(writer, attributes, DataGroupPart.LOADING_STATUS);
110110
List<DataType> headers = handler.getHeaders();
111111
IpacTableUtil.writeHeader(writer, headers);
112+
writer.flush();
112113
DataObject row = handler.next();
113114
while (row != null) {
114115
IpacTableUtil.writeRow(writer, headers, row);

0 commit comments

Comments
 (0)