Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jun 21, 2024
1 parent 06be42a commit c115a6e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -933,8 +933,10 @@ public void write(DataOutput out) throws IOException {
idToLoadJob.values().stream().filter(t -> !t.isExpired(currentTimeMs))
.filter(t -> !(t instanceof MiniLoadJob)).collect(Collectors.toList());

LOG.info("write load job size: {}", loadJobs.size());
out.writeInt(loadJobs.size());
for (LoadJob loadJob : loadJobs) {
LOG.info("write load job: {}", loadJob.getId());
loadJob.write(out);
}
}
Expand Down

0 comments on commit c115a6e

Please sign in to comment.