Skip to content
Merged
Changes from all 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: 2 additions & 2 deletions pkg/openshift-sdn/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (sdn *OpenShiftSDN) runProxy(waitChan chan<- bool) {
// are registered yet.
serviceConfig := pconfig.NewServiceConfig(
sdn.informers.KubeInformers.Core().V1().Services(),
sdn.ProxyConfig.ConfigSyncPeriod.Duration,
sdn.ProxyConfig.IPTables.SyncPeriod.Duration,
)

if enableUnidling {
Expand Down Expand Up @@ -194,7 +194,7 @@ func (sdn *OpenShiftSDN) runProxy(waitChan chan<- bool) {

endpointsConfig := pconfig.NewEndpointsConfig(
sdn.informers.KubeInformers.Core().V1().Endpoints(),
sdn.ProxyConfig.ConfigSyncPeriod.Duration,
sdn.ProxyConfig.IPTables.SyncPeriod.Duration,
)
// customized handling registration that inserts a filter if needed
if err := sdn.OsdnProxy.Start(proxier, waitChan); err != nil {
Expand Down