Skip to content

Commit 8541631

Browse files
fix: undo accidental commit
1 parent f8b1c64 commit 8541631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cns/service/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,13 +1123,13 @@ type nodeNetworkConfigGetter interface {
11231123
Get(context.Context) (*v1alpha.NodeNetworkConfig, error)
11241124
}
11251125

1126-
type IpamStateReconciler interface {
1126+
type ipamStateReconciler interface {
11271127
ReconcileIPAMState(ncRequests []*cns.CreateNetworkContainerRequest, podInfoByIP map[string]cns.PodInfo, nnc *v1alpha.NodeNetworkConfig) cnstypes.ResponseCode
11281128
}
11291129

11301130
// TODO(rbtr) where should this live??
11311131
// reconcileInitialCNSState initializes cns by passing pods and a CreateNetworkContainerRequest
1132-
func reconcileInitialCNSState(ctx context.Context, cli nodeNetworkConfigGetter, ipamReconciler IpamStateReconciler, podInfoByIPProvider cns.PodInfoByIPProvider) error {
1132+
func reconcileInitialCNSState(ctx context.Context, cli nodeNetworkConfigGetter, ipamReconciler ipamStateReconciler, podInfoByIPProvider cns.PodInfoByIPProvider) error {
11331133
// Get nnc using direct client
11341134
nnc, err := cli.Get(ctx)
11351135
if err != nil {

0 commit comments

Comments
 (0)