From e5d319d611f5fdcf9b4be69a1473ee84121c65b7 Mon Sep 17 00:00:00 2001 From: Abhishek Gupta Date: Thu, 26 Feb 2015 17:32:53 -0800 Subject: [PATCH] Fixing comment alignment --- plugin/pkg/scheduler/factory/plugins.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pkg/scheduler/factory/plugins.go b/plugin/pkg/scheduler/factory/plugins.go index 031cd31ee25e6..e53c24f0b18cb 100644 --- a/plugin/pkg/scheduler/factory/plugins.go +++ b/plugin/pkg/scheduler/factory/plugins.go @@ -71,8 +71,8 @@ func RegisterCustomFitPredicate(policy schedulerapi.PredicatePolicy) string { } else if policy.Argument.LabelsPresence != nil { predicate = algorithm.NewNodeLabelPredicate(MinionLister, policy.Argument.LabelsPresence.Labels, policy.Argument.LabelsPresence.Presence) } - // check to see if a pre-defined predicate is requested } else if predicate, ok = fitPredicateMap[policy.Name]; ok { + // checking to see if a pre-defined predicate is requested glog.V(2).Infof("Predicate type %s already registered, reusing.", policy.Name) }