check to see if we exceeded hbase.regionserver.maxlogs limit is incorrect -------------------------------------------------------------------------
Key: HBASE-3241 URL: https://issues.apache.org/jira/browse/HBASE-3241 Project: HBase Issue Type: Bug Reporter: Kannan Muthukkaruppan In HLog.java:cleanOldLogs(), the number of logs left after archiving of old logs is computed as: {code} int logCount = this.outputfiles.size() - logsToRemove; {code} However, the archival itself already removes the files that were archived from the "this.outputfiles" map. So shouldn't the above logic simply be the following? {code} int logCount = this.outputfiles.size(); {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.