Skip to content

Commit c22568e

Browse files
authored
[MINOR] Fix the Spark job status description for metadata-only bootstrap operation (#6666)
1 parent a1dedf3 commit c22568e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/table/action/bootstrap/SparkBootstrapCommitActionExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ private HoodieData<BootstrapWriteStatus> runMetadataBootstrap(List<Pair<String,
345345
})
346346
.collect(Collectors.toList());
347347

348-
context.setJobStatus(this.getClass().getSimpleName(), "Bootstrap metadata table: " + config.getTableName());
348+
context.setJobStatus(this.getClass().getSimpleName(), "Run metadata-only bootstrap operation: " + config.getTableName());
349349
return context.parallelize(bootstrapPaths, config.getBootstrapParallelism())
350350
.map(partitionFsPair -> getMetadataHandler(config, table, partitionFsPair.getRight().getRight()).runMetadataBootstrap(partitionFsPair.getLeft(),
351351
partitionFsPair.getRight().getLeft(), keyGenerator));

0 commit comments

Comments
 (0)