HBASE-5049 TestHLogSplit.testLogRollAfterSplitStart not working due to HBASE-5006

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1215371 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-12-17 00:48:34 +00:00
parent 3cad85bc77
commit 46eef1e255
1 changed files with 1 additions and 3 deletions

View File

@ -707,9 +707,7 @@ public class HLog implements Syncable {
writer.init(fs, path, conf);
return writer;
} catch (Exception e) {
IOException ie = new IOException("cannot get log writer", e);
ie.initCause(e);
throw ie;
throw new IOException("cannot get log writer", e);
}
}