Skip to content

Commit

Permalink
Fixed failing integ tests
Browse files Browse the repository at this point in the history
Signed-off-by: Vinay Krishna Pudyodu <vinkrish.neo@gmail.com>
  • Loading branch information
vinaykpud committed Dec 11, 2024
1 parent 6944ce6 commit 046e26c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -432,4 +432,5 @@ public void testSegmentReplicationNodeAndIndexStats() throws Exception {
}

}

}
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private SegmentReplicationPerGroupStats updateGroupStats(
Set<SegmentReplicationShardStats> combinedStats = Stream.concat(updatedReplicaStats.stream(), searchReplicaStats.stream())
.collect(Collectors.toSet());

return new SegmentReplicationPerGroupStats(groupStats.getShardId(), combinedStats, 0);
return new SegmentReplicationPerGroupStats(groupStats.getShardId(), combinedStats, groupStats.getRejectedRequestCount());
}

private Set<SegmentReplicationShardStats> computeSearchReplicaStats(
Expand Down

0 comments on commit 046e26c

Please sign in to comment.