Skip to content

Commit d27d297

Browse files
committed
fix comment
1 parent 9be24fc commit d27d297

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

catalogs/catalog-hadoop/src/main/java/org/apache/gravitino/catalog/hadoop/HadoopCatalogOperations.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,12 @@ public Fileset createFileset(
263263

264264
FileSystem fs = getFileSystem(filesetPath, conf);
265265
if (!fs.exists(filesetPath)) {
266-
/*
267266
if (!fs.mkdirs(filesetPath)) {
268267
throw new RuntimeException(
269268
"Failed to create fileset " + ident + " location " + filesetPath);
270-
}*/
269+
}
271270

272-
LOG.info("Skip fileset {} location {}", ident, filesetPath);
271+
LOG.info("Created fileset {} location {}", ident, filesetPath);
273272
} else {
274273
LOG.info("Fileset {} manages the existing location {}", ident, filesetPath);
275274
}

0 commit comments

Comments
 (0)