You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2018/10/08 15:24:47 UTC

hbase git commit: HBASE-21230 BackupUtils#checkTargetDir doesn't compose error message correctly (liubangchen)

Repository: hbase
Updated Branches:
  refs/heads/master ce29e9ea5 -> fd3e0ff19


HBASE-21230 BackupUtils#checkTargetDir doesn't compose error message correctly (liubangchen)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fd3e0ff1
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fd3e0ff1
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fd3e0ff1

Branch: refs/heads/master
Commit: fd3e0ff191f3e26b09f52f538748133b65f40740
Parents: ce29e9e
Author: tedyu <yu...@gmail.com>
Authored: Mon Oct 8 08:24:41 2018 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Mon Oct 8 08:24:41 2018 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/fd3e0ff1/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java
----------------------------------------------------------------------
diff --git a/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java b/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java
index 12f2f2f..da11756 100644
--- a/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java
+++ b/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/util/BackupUtils.java
@@ -327,7 +327,7 @@ public final class BackupUtils {
       if (expMsg.contains("No FileSystem for scheme")) {
         newMsg =
             "Unsupported filesystem scheme found in the backup target url. Error Message: "
-                + newMsg;
+                + expMsg;
         LOG.error(newMsg);
         throw new IOException(newMsg);
       } else {