This is an automated email from the ASF dual-hosted git repository.
wchevreuil pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 94ed02d7ed2 HBASE-27407 Fixing check for "description" request param
in JMXJsonServlet.java (#4816)
94ed02d7ed2 is described below
commit 94ed02d7ed2d1d609a386bec3b96d8c1e1e2cf9a
Author: Luca Kovács <[email protected]>
AuthorDate: Thu Oct 6 11:47:30 2022 +0200
HBASE-27407 Fixing check for "description" request param in
JMXJsonServlet.java (#4816)
Signed-off-by: Wellington Chevreuil <[email protected]>
---
.../src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/hbase-http/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
b/hbase-http/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
index db7c846fde5..d393187b1e4 100644
---
a/hbase-http/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
+++
b/hbase-http/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
@@ -171,8 +171,7 @@ public class JMXJsonServlet extends HttpServlet {
}
beanWriter = this.jsonBeanWriter.open(writer);
// Should we output description on each attribute and bean?
- String tmpStr = request.getParameter(INCLUDE_DESCRIPTION);
- boolean description = tmpStr != null && tmpStr.length() > 0;
+ boolean description =
"true".equals(request.getParameter(INCLUDE_DESCRIPTION));
// query per mbean attribute
String getmethod = request.getParameter("get");