HBASE-930 RegionServer stuck: HLog: Could not append. Requesting close of log java.io.IOException: Could not get block locations. Aborting...; WRONG - not a java 1.6ism

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@705138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-16 04:22:50 +00:00
parent 44b55114b4
commit a0cffd6f12
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ public class HLog implements HConstants {
// shut ourselves down to minimize loss. Alternative is to try and
// keep going. See HBASE-930.
FailedLogCloseException flce =
new FailedLogCloseException("#" + this.filenum, e);
new FailedLogCloseException("#" + this.filenum);
flce.initCause(e);
throw e;
}