Skip to content

Commit

Permalink
storage: Write \n after the json header #TASK-6722
Browse files Browse the repository at this point in the history
  • Loading branch information
j-coll committed Oct 25, 2024
1 parent 356567e commit 6253da3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ private void startProcess(Context context) throws IOException, StorageEngineExce
}
ObjectMapper objectMapper = new ObjectMapper().configure(MapperFeature.REQUIRE_SETTERS_FOR_GETTERS, true);
objectMapper.writeValue((DataOutput) stdin, metadata);
stdin.write('\n');
}

processedBytes = 0;
Expand Down

0 comments on commit 6253da3

Please sign in to comment.