wernerdv commented on code in PR #12840:
URL: https://github.com/apache/ignite/pull/12840#discussion_r2889665429


##########
modules/core/src/main/java/org/apache/ignite/dump/DumpReader.java:
##########
@@ -410,11 +426,16 @@ private static class GroupsConfigs {
         /** Cache ids. */
         public final Set<Integer> cacheIds;
 
+        /** Mapping from group id to group name. */
+        public final Map<Integer, String> grpIdToName;
+
         /** */
-        public GroupsConfigs(Map<Integer, List<String>> grpToNodes, 
Collection<StoredCacheData> cacheCfgs, Set<Integer> cacheIds) {
+        public GroupsConfigs(Map<Integer, List<String>> grpToNodes, 
Collection<StoredCacheData> cacheCfgs, Set<Integer> cacheIds,
+            Map<Integer, String> grpIdToName) {

Review Comment:
   ```suggestion
           public GroupsConfigs(
               Map<Integer, List<String>> grpToNodes,
               Collection<StoredCacheData> cacheCfgs,
               Set<Integer> cacheIds,
               Map<Integer, String> grpIdToName
           ) {
   ```



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