We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05f24a commit f70eddbCopy full SHA for f70eddb
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSImage.java
@@ -284,10 +284,11 @@ public void testImportCheckpoint() throws Exception{
284
cluster.waitActive();
285
FSNamesystem fsn = cluster.getNamesystem();
286
FSImage fsImage= new FSImage(conf);
287
- LambdaTestUtils.intercept(IOException.class,
288
- "Cannot import image from a checkpoint. "
289
- + "\"dfs.namenode.checkpoint.edits.dir\" is not set.",
290
- () -> fsImage.doImportCheckpoint(fsn));
+ LambdaTestUtils.intercept(
+ IOException.class,
+ "Cannot import image from a checkpoint. "
+ + "\"dfs.namenode.checkpoint.edits.dir\" is not set.",
291
+ () -> fsImage.doImportCheckpoint(fsn));
292
}
293
294
0 commit comments