This is an automated email from the ASF dual-hosted git repository.
wchevreuil 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 f47a7287c65 HBASE-27407 Fixing check for "description" request param
in JMXJsonServlet.java (#4816)
f47a7287c65 is described below
commit f47a7287c65316f8e89849e75988fdfbe3ad9283
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 e0fe26862ba..e46975f7628 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");