We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f5019b commit e28d64eCopy full SHA for e28d64e
crates/stackable-operator/src/crd/listener/listeners/v1alpha1_impl.rs
@@ -31,6 +31,7 @@ impl DeepMerge for ListenerSpec {
31
merge_strategies::list::map(
32
&mut self.ports,
33
other.ports,
34
+ // The unique thing identifying a port is it's name
35
&[|lhs, rhs| lhs.name == rhs.name],
36
|current_item, other_item| {
37
DeepMerge::merge_from(current_item, other_item);
@@ -49,6 +50,7 @@ impl DeepMerge for ListenerStatus {
49
50
51
&mut self.ingress_addresses,
52
other.ingress_addresses,
53
+ // The unique thing identifying an ingress address is it's address
54
&[|lhs, rhs| lhs.address == rhs.address],
55
56
0 commit comments