From 59baa0754f1b22d61a9ced01998925789b79832f Mon Sep 17 00:00:00 2001 From: chen yangxue Date: Sat, 13 Oct 2018 10:19:09 +0800 Subject: [PATCH] fix err log --- pkg/scheduler/plugins/predicates/predicates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/plugins/predicates/predicates.go b/pkg/scheduler/plugins/predicates/predicates.go index 48a01836b..019c1f662 100644 --- a/pkg/scheduler/plugins/predicates/predicates.go +++ b/pkg/scheduler/plugins/predicates/predicates.go @@ -82,7 +82,7 @@ func (pp *nodeAffinityPlugin) OnSessionOpen(ssn *framework.Session) { if !fit { return fmt.Errorf("task <%s/%s> does not tolerate node <%s> taints", - node.Name, task.Namespace, task.Name) + task.Namespace, task.Name, node.Name) } return nil