From ecfe31b8907710d7328d9cb7d2090e8462da8af7 Mon Sep 17 00:00:00 2001 From: tanjunchen Date: Fri, 24 Jan 2020 23:56:16 +0800 Subject: [PATCH] /test/e2e/framework:remove TODO in test/e2e/framework/util.go --- test/e2e/framework/util.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index e39ebf09132..2b52ae61a19 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -578,11 +578,7 @@ func LoadClientset() (*clientset.Clientset, error) { return clientset.NewForConfig(config) } -// RandomSuffix provides a random string to append to pods,services,rcs. -// TODO: Allow service names to have the same form as names -// for pods and replication controllers so we don't -// need to use such a function and can instead -// use the UUID utility function. +// RandomSuffix provides a random sequence to append to pods,services,rcs. func RandomSuffix() string { return strconv.Itoa(rand.Intn(10000)) }