Skip to content

Commit 804eaea

Browse files
committed
fix a typo
1 parent bca40f1 commit 804eaea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/resolvers/endpoints.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,10 @@ func (r *defaultEndpointsResolver) getIngressRulesPorts(ctx context.Context, pol
224224
}
225225

226226
// since we pull ports from dst pods, we should deduplicate them
227-
deduppedPorts := dedupPorts(portList)
228-
r.logger.Info("Got ingress ports from dst pods", "port", deduppedPorts)
227+
dedupedPorts := dedupPorts(portList)
228+
r.logger.Info("Got ingress ports from dst pods", "port", dedupedPorts)
229229

230-
return deduppedPorts
230+
return dedupedPorts
231231
}
232232

233233
func (r *defaultEndpointsResolver) getPortList(pod corev1.Pod, ports []networking.NetworkPolicyPort) []policyinfo.Port {

0 commit comments

Comments
 (0)