Skip to content

Commit

Permalink
[fix](overflow) show backends overflow for backend ids
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed May 23, 2024
1 parent bb407ee commit 7d06fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2205,7 +2205,7 @@ private void handleShowBackends() {
backendInfos.sort(new Comparator<List<String>>() {
@Override
public int compare(List<String> o1, List<String> o2) {
return Integer.parseInt(o1.get(0)) - Integer.parseInt(o2.get(0));
return Long.parseLong(o1.get(0)) - Long.parseLong(o2.get(0));
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ PROPERTIES (
if (loadAttribute.isExceptFailed) {
assertTrue(false, "load should be failed but was success: $result")
}
jobId = result[0][0].toInteger()
jobId = result[0][0].toLong()
logger.info("Load FINISHED " + loadAttribute.label + ": $result" + " loadId: $jobId")
break
}
Expand Down

0 comments on commit 7d06fb2

Please sign in to comment.