Skip to content

Commit

Permalink
Fix remove grpc ep issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhiguo committed Jan 17, 2025
1 parent fd6c98d commit 548bd94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void handleResolvedAddresses(ResolvedAddresses resolvedAddresses) {
endpoints = news;
olds.forEach((addressGroup, endpoint) -> {
if (!latestAddresses.contains(addressGroup)) {
removed.remove(endpoint);
removed.add(endpoint);
}
});
// close not exists
Expand Down

0 comments on commit 548bd94

Please sign in to comment.