This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new fa360b6262e HBASE-29886 list_namespace will throw instance vars on
non-persistent Java type warning (#7774)
fa360b6262e is described below
commit fa360b6262e67cc6b46dcb2bb0cf902e4e950e02
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 9682f616ad6..e076711fc41 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -1401,7 +1401,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
#----------------------------------------------------------------------------------------------