Skip to content

Commit

Permalink
Merge pull request kubernetes-retired#423 from chenyangxueHDU/master
Browse files Browse the repository at this point in the history
fix err log
  • Loading branch information
k8s-ci-robot authored Oct 13, 2018
2 parents 5ae939f + 59baa07 commit 6bac0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scheduler/plugins/predicates/predicates.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6bac0df

Please sign in to comment.