joshelser commented on a change in pull request #369: [ACCUMULO-4787] Close
input stream in AccumuloReplicaSystem
URL: https://github.com/apache/accumulo/pull/369#discussion_r167645248
##########
File path:
server/tserver/src/main/java/org/apache/accumulo/tserver/replication/AccumuloReplicaSystem.java
##########
@@ -370,11 +368,112 @@ protected Status replicateLogs(ClientContext
peerContext, final HostAndPort peer
log.debug("Replication WAL to peer tserver");
final Set<Integer> tids;
- final DataInputStream input;
- Span span = Trace.start("Read WAL header");
- span.data("file", p.toString());
- try {
- input = getWalStream(p);
+ try (final FSDataInputStream fsinput = fs.open(p); final DataInputStream
input = getWalStream(p, fsinput)) {
Review comment:
nit: would prefer to see these split up onto two lines. Not sure what others
think :)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services