From 7ec49d234cdda89b7426b1f39976e06c0e6591a5 Mon Sep 17 00:00:00 2001 From: "Madhusudan.C.S" Date: Thu, 10 Dec 2015 14:43:33 -0800 Subject: [PATCH] Increase the node condition status change observation time out to 5 minutes. 1 minute is too short. --- test/e2e/nodeoutofdisk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/nodeoutofdisk.go b/test/e2e/nodeoutofdisk.go index 5cb5060150f..cda3adba620 100644 --- a/test/e2e/nodeoutofdisk.go +++ b/test/e2e/nodeoutofdisk.go @@ -46,7 +46,7 @@ const ( // flag value affects all the e2e tests. So we are hard-coding this value for now. lowDiskSpaceThreshold uint64 = 256 * mb - nodeOODTimeOut = 1 * time.Minute + nodeOODTimeOut = 5 * time.Minute numNodeOODPods = 3 )