This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 26fdd25071a HBASE-29886 list_namespace will throw instance vars on
non-persistent Java type warning (#7733)
26fdd25071a is described below
commit 26fdd25071a646a88112b741799dc191ffba1854
Author: Liu Xiao <[email protected]>
AuthorDate: Mon Feb 23 16:46:03 2026 +0800
HBASE-29886 list_namespace will throw instance vars on non-persistent Java
type warning (#7733)
Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by: Dávid Paksy <[email protected]>
---
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 2b1d29e7849..8827db0daef 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -1484,7 +1484,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
#----------------------------------------------------------------------------------------------