Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sixpluszero committed Feb 27, 2025
1 parent 6b04f54 commit e084dad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void testDumpHostHeartbeatLag() {
LOGGER.info("Heartbeat Info with topic filtering:\n" + heartbeatInfoMap);
Assert.assertEquals(heartbeatInfoMap.keySet().stream().filter(x -> x.endsWith("dc-0")).count(), 3);
Assert.assertEquals(
heartbeatInfoMap.keySet().stream().filter(x -> x.endsWith("dc-1")).count() * 2,
heartbeatInfoMap.keySet().stream().filter(x -> x.contains("dc-1")).count() * 2,
heartbeatInfoMap.values().stream().filter(x -> x.getLeaderState().equals("LEADER")).count());

heartbeatInfoMap = serverWrapper.getVeniceServer()
Expand Down

0 comments on commit e084dad

Please sign in to comment.