Pass pointer to node in NodCondition

This commit is contained in:
Wojciech Tyczynski
2016-07-07 13:06:32 +02:00
parent 58c95c136f
commit 7219802ac7
6 changed files with 8 additions and 8 deletions

View File

@@ -641,7 +641,7 @@ func hostsFromNodeList(list *api.NodeList) []string {
}
func getNodeConditionPredicate() cache.NodeConditionPredicate {
return func(node api.Node) bool {
return func(node *api.Node) bool {
// We add the master to the node list, but its unschedulable. So we use this to filter
// the master.
// TODO: Use a node annotation to indicate the master

View File

@@ -319,7 +319,7 @@ func TestGetNodeConditionPredicate(t *testing.T) {
}
pred := getNodeConditionPredicate()
for _, test := range tests {
accept := pred(test.node)
accept := pred(&test.node)
if accept != test.expectAccept {
t.Errorf("Test failed for %s, expected %v, saw %v", test.name, test.expectAccept, accept)
}