Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion grpc/src/client/name_resolution/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,9 @@ impl Eq for Address {}

impl PartialEq for Address {
fn eq(&self, other: &Self) -> bool {
self.network_type == other.network_type && self.address == other.address
self.network_type == other.network_type
&& self.address == other.address
&& self.attributes == other.attributes
}
}

Expand Down
Loading