This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch branch-2.6
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.6 by this push:
new 76269f67d14 HBASE-29886 list_namespace will throw instance vars on
non-persistent Java type warning (#7774)
76269f67d14 is described below
commit 76269f67d14c4a498663a8d873c3f2dc257a163d
Author: Liu Xiao <[email protected]>
AuthorDate: Mon Feb 23 16:46:27 2026 +0800
HBASE-29886 list_namespace will throw instance vars on non-persistent Java
type warning (#7774)
Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by: Dávid Paksy <[email protected]>
(cherry picked from commit 824c27690b7197589efba3969898b00ec030864d)
---
hbase-shell/src/main/ruby/hbase/admin.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb
b/hbase-shell/src/main/ruby/hbase/admin.rb
index 8904191a63a..c7f8a2b095c 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -1411,7 +1411,7 @@ module Hbase
def list_namespace(regex = '.*')
pattern = java.util.regex.Pattern.compile(regex)
list = @admin.listNamespaces
- list.select { |s| pattern.match(s) }
+ list.select { |s| pattern.matcher(s).matches }
end
#----------------------------------------------------------------------------------------------