Skip to content

Commit

Permalink
GG-21225 control.sh validate_indexes SQL Index issue add information …
Browse files Browse the repository at this point in the history
…about group and cache id.
  • Loading branch information
ktkalenko committed Jul 17, 2019
1 parent 04f305d commit f3017ea
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,16 @@ else if (current++ % checkThrough > 0)
}
}

String uniqueIdxName = "[cacheGroup=" + ctx.group().name() + ", cache=" + ctx.name() + ", idx=" + idx.getName() + "]";
CacheGroupContext group = ctx.group();

String uniqueIdxName = String.format(
"[cacheGroup=%s, cacheGroupId=%s, cache=%s, cacheId=%s, idx=%s]",
group.name(),
group.groupId(),
ctx.name(),
ctx.cacheId(),
idx.getName()
);

processedIndexes.incrementAndGet();

Expand Down

0 comments on commit f3017ea

Please sign in to comment.