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:
parent
3cad85bc77
commit
46eef1e255
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue