HBASE-21230 BackupUtils#checkTargetDir doesn't compose error message correctly (liubangchen)
This commit is contained in:
parent
ce29e9ea5c
commit
fd3e0ff191
|
@ -327,7 +327,7 @@ public final class BackupUtils {
|
||||||
if (expMsg.contains("No FileSystem for scheme")) {
|
if (expMsg.contains("No FileSystem for scheme")) {
|
||||||
newMsg =
|
newMsg =
|
||||||
"Unsupported filesystem scheme found in the backup target url. Error Message: "
|
"Unsupported filesystem scheme found in the backup target url. Error Message: "
|
||||||
+ newMsg;
|
+ expMsg;
|
||||||
LOG.error(newMsg);
|
LOG.error(newMsg);
|
||||||
throw new IOException(newMsg);
|
throw new IOException(newMsg);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue