From 1229b9a537137d367050c4a9bad0b5d5186f2a4f Mon Sep 17 00:00:00 2001 From: Jing Ai Date: Wed, 22 Nov 2017 18:29:59 -0800 Subject: [PATCH] Add a missing ) to glog.Waringf. --- pkg/controller/node/ipam/sync/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/node/ipam/sync/sync.go b/pkg/controller/node/ipam/sync/sync.go index 71489b8bac5..eeff4a6d5fc 100644 --- a/pkg/controller/node/ipam/sync/sync.go +++ b/pkg/controller/node/ipam/sync/sync.go @@ -244,7 +244,7 @@ func (op *updateOp) validateRange(ctx context.Context, sync *NodeSync, node *v1. // alias. func (op *updateOp) updateNodeFromAlias(ctx context.Context, sync *NodeSync, node *v1.Node, aliasRange *net.IPNet) error { if sync.mode != SyncFromCloud { - glog.Warningf("Detect mode %q while expect to sync from cloud", sync.mode + glog.Warningf("Detect mode %q while expect to sync from cloud", sync.mode) } glog.V(2).Infof("Updating node spec with alias range, node.PodCIDR = %v", aliasRange)