Skip to content

Commit

Permalink
revert CR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiriMoran committed Nov 9, 2023
1 parent 025228f commit 7aa6c93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/vpcmodel/semanticDiffSubnets.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ func (subnetConfConnectivity *SubnetConfigConnectivity) subtract(other *SubnetCo
if otherSrc, ok := other.subnetConnectivity[srcInOther]; ok {
if otherConn, ok := otherSrc[dstInOther]; ok {
// ToDo: https://github.com/np-guard/vpc-network-config-analyzer/issues/199
if conns.Equals(otherConn) {
subtractConn := conns.Subtract(otherConn)
if subtractConn.IsEmpty() {
continue // no diff
}
connDiff.conn2 = otherConn
Expand Down

0 comments on commit 7aa6c93

Please sign in to comment.