yiguolei commented on code in PR #32874:
URL: https://github.com/apache/doris/pull/32874#discussion_r1542274611


##########
fe/fe-core/src/main/java/org/apache/doris/resource/workloadgroup/WorkloadGroup.java:
##########
@@ -431,6 +454,13 @@ public void getProcNodeData(BaseProcResult result, 
QueryQueue qq) {
                 row.add(qq == null ? "0" : 
String.valueOf(qq.getCurrentRunningQueryNum()));
             } else if (QueryQueue.WAITING_QUERY_NUM.equals(key)) {
                 row.add(qq == null ? "0" : 
String.valueOf(qq.getCurrentWaitingQueryNum()));
+            } else if (TAG.equals(key)) {
+                String val = properties.get(key);
+                if (StringUtils.isEmpty(val)) {
+                    row.add(TAG_DEFAULT_VALUE);

Review Comment:
   just leave it empty



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to