DomGarguilo opened a new issue #2355: URL: https://github.com/apache/accumulo/issues/2355
In DatafileManager,java, there is a while-loop whose condition, a boolean value, is always false - meaning the loop will never be entered. The boolean is instantiated as false and never changed. My first thought was to just remove the unused loop and its boolean condition however I first wanted to see if anyone knew what was supposed to be going on here. The boolean value: https://github.com/apache/accumulo/blob/52e80b1d11f0093a07a2d886d85aa74f7998096b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java#L84 The while loop (only places that the above boolean is used): https://github.com/apache/accumulo/blob/52e80b1d11f0093a07a2d886d85aa74f7998096b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java#L95-L101 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
