From f7fbc168a1538ab4157db8aeeeee8fa9f7827774 Mon Sep 17 00:00:00 2001 From: Janos Gub Date: Fri, 12 Jan 2018 10:16:13 +0100 Subject: [PATCH] HBASE-19771 restore_snapshot shell command gives wrong namespace if the namespace doesn't exist Signed-off-by: tedyu --- hbase-shell/src/main/ruby/shell/commands.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hbase-shell/src/main/ruby/shell/commands.rb b/hbase-shell/src/main/ruby/shell/commands.rb index f17a7f63481..1b8de9e7f2b 100644 --- a/hbase-shell/src/main/ruby/shell/commands.rb +++ b/hbase-shell/src/main/ruby/shell/commands.rb @@ -117,7 +117,8 @@ module Shell raise "Unknown region #{args.first}!" end if cause.is_a?(org.apache.hadoop.hbase.NamespaceNotFoundException) - raise "Unknown namespace #{args.first.split(':')[0]}!" + s = /.*NamespaceNotFoundException: (?[^\n]+).*/.match(cause.message) + raise "Unknown namespace #{s['namespace']}!" end if cause.is_a?(org.apache.hadoop.hbase.snapshot.SnapshotDoesNotExistException) raise "Unknown snapshot #{args.first}!"