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@705137 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-16 04:19:56 +00:00
parent ca07a6f30b
commit 44b55114b4
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ public class HLog implements HConstants {
// keep going. See HBASE-930.
FailedLogCloseException flce =
new FailedLogCloseException("#" + this.filenum, e);
flce.initCause(e):
flce.initCause(e);
throw e;
}
Path p = computeFilename(old_filenum);