Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
re-remove AddFunc calls that were removed by openshift#11805
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Goldstein committed Dec 22, 2016
1 parent d55d038 commit 6da19f6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/deploy/controller/deploymentconfig/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@ func NewDeploymentConfigController(dcInformer, rcInformer, podInformer cache.Sha
})
c.rcStore.Indexer = rcInformer.GetIndexer()
rcInformer.AddEventHandler(cache.ResourceEventHandlerFuncs{
AddFunc: c.addReplicationController,
UpdateFunc: c.updateReplicationController,
DeleteFunc: c.deleteReplicationController,
})
c.podStore.Indexer = podInformer.GetIndexer()
podInformer.AddEventHandler(cache.ResourceEventHandlerFuncs{
AddFunc: c.addPod,
UpdateFunc: c.updatePod,
DeleteFunc: c.deletePod,
})
Expand Down

0 comments on commit 6da19f6

Please sign in to comment.