Aias00 commented on code in PR #6275:
URL: https://github.com/apache/shenyu/pull/6275#discussion_r2734491535


##########
shenyu-admin/src/main/java/org/apache/shenyu/admin/service/impl/TagServiceImpl.java:
##########
@@ -184,7 +184,7 @@ private void recurseUpdateTag(final Map<String, TagDO> 
allData, final Map<String
             return;
         }
         List<String> subTagIds = relationMap.get(id);
-        subTagIds.stream().forEach(tagId -> {
+        subTagIds.forEach(tagId -> {

Review Comment:
   ensure that `subTagIds` is not null to avoid a `NullPointerException`.



-- 
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]

Reply via email to