You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by le...@apache.org on 2020/01/02 01:11:26 UTC

[incubator-hudi] branch master updated: [MINOR] Fix error usage of String.format (#1169)

This is an automated email from the ASF dual-hosted git repository.

leesf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new e1e5fe3  [MINOR] Fix error usage of String.format (#1169)
e1e5fe3 is described below

commit e1e5fe33249bf511486073dd9cf48e5b7ea14816
Author: lamber-ken <la...@163.com>
AuthorDate: Wed Jan 1 19:11:15 2020 -0600

    [MINOR] Fix error usage of String.format (#1169)
---
 .../src/main/java/org/apache/hudi/utilities/HoodieSnapshotCopier.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotCopier.java b/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotCopier.java
index 06fc5de..d24319e 100644
--- a/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotCopier.java
+++ b/hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieSnapshotCopier.java
@@ -156,7 +156,7 @@ public class HoodieSnapshotCopier implements Serializable {
     // Create the _SUCCESS tag
     Path successTagPath = new Path(outputDir + "/_SUCCESS");
     if (!fs.exists(successTagPath)) {
-      LOG.info(String.format("Creating _SUCCESS under targetBasePath: $s", outputDir));
+      LOG.info(String.format("Creating _SUCCESS under targetBasePath: %s", outputDir));
       fs.createNewFile(successTagPath);
     }
   }