advancedxy commented on code in PR #812:
URL: https://github.com/apache/incubator-uniffle/pull/812#discussion_r1163752652


##########
server/src/main/java/org/apache/uniffle/server/ShuffleServer.java:
##########
@@ -473,4 +474,18 @@ public boolean isRunning() {
   public int getNettyPort() {
     return nettyPort;
   }
+
+  public String coverToString() {
+    List<String> tags = shuffleServerConf.get(ShuffleServerConf.TAGS);
+    StringBuilder sb = new StringBuilder();
+    sb.append(Constants.SHUFFLE_SERVER_VERSION);
+    if (tags == null || tags.size() == 0) {
+      return sb.toString();
+    }
+    for (String tag : tags) {
+      sb.append("_");

Review Comment:
   since `_` is already part of custom tags, you cannot distinguish `_` is a 
separator or part of the tag.
   
   For `ss_v4_low_priority`  could also be interpreted as tags as: `ss_v4, low, 
priority`



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to