Commit 34c3dc57 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

fix for traffic drop on mobility event

parent 212f6af9
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -70,8 +70,6 @@ func (im *IpManager) RefreshPodList(podList map[string]bool) {
	for podName := range im.podIpMap {
		if _, found := podList[podName]; !found {
			delete(im.podIpMap, podName)
		} else {
			delete(podList, podName)
		}
	}

@@ -92,8 +90,6 @@ func (im *IpManager) RefreshSvcList(svcList map[string]bool) {
	for svcName := range im.svcIpMap {
		if _, found := svcList[svcName]; !found {
			delete(im.svcIpMap, svcName)
		} else {
			delete(svcList, svcName)
		}
	}