From 93246643306eba71e2f19b1f51a14f7d8441ee87 Mon Sep 17 00:00:00 2001 From: tanjunchen Date: Thu, 2 Jan 2020 21:55:58 +0800 Subject: [PATCH] remove TODO in test/e2e/framework/node/resource.go --- test/e2e/framework/node/resource.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/e2e/framework/node/resource.go b/test/e2e/framework/node/resource.go index 7601f03db38..0984ec265a1 100644 --- a/test/e2e/framework/node/resource.go +++ b/test/e2e/framework/node/resource.go @@ -156,7 +156,6 @@ func IsConditionUnset(node *v1.Node, conditionType v1.NodeConditionType) bool { // Filter filters nodes in NodeList in place, removing nodes that do not // satisfy the given condition -// TODO: consider merging with pkg/client/cache.NodeLister func Filter(nodeList *v1.NodeList, fn func(node v1.Node) bool) { var l []v1.Node @@ -336,7 +335,6 @@ func GetPublicIps(c clientset.Interface) ([]string, error) { // 2) Needs to be ready. // If EITHER 1 or 2 is not true, most tests will want to ignore the node entirely. // If there are no nodes that are both ready and schedulable, this will return an error. -// TODO: remove references in framework/util.go. func GetReadySchedulableNodes(c clientset.Interface) (nodes *v1.NodeList, err error) { nodes, err = checkWaitListSchedulableNodes(c) if err != nil {