Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkonecn committed Jul 8, 2024
1 parent d9c6ec1 commit d6c6707
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ private void addUsers(String[] userNames) throws Exception {
Entry<String, Integer> maxNoPrivateResourceEntry = userResourceUsage.entrySet().stream()
.filter(x -> !x.getKey().startsWith("/api/private/")).max(Map.Entry.comparingByValue())
.orElseThrow(Exception::new);
safeAddToFileForce(user.getId(), usageSummaryUsers, userIndex, "userId");
safeAddToFileForce(String.valueOf(user.getId()), usageSummaryUsers, userIndex, "userId");
safeAddToFileForce(user.getEmail(), usageSummaryUsers, userIndex, "userEmail");
safeAddToFileForce(maxResourceEntry.getKey(), usageSummaryUsers,
userIndex, "endpoint");
Expand Down

0 comments on commit d6c6707

Please sign in to comment.