You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by wc...@apache.org on 2022/10/06 09:47:58 UTC

[hbase] branch master updated: HBASE-27407 Fixing check for "description" request param in JMXJsonServlet.java (#4816)

This is an automated email from the ASF dual-hosted git repository.

wchevreuil 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 feccf958e12 HBASE-27407 Fixing check for "description" request param in JMXJsonServlet.java (#4816)
feccf958e12 is described below

commit feccf958e125a2d3b4b6afabc1c9b1fc8437cd76
Author: Luca Kovács <ko...@gmail.com>
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 <wc...@apache.org>
---
 .../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");