Skip to content

Commit 09b13ae

Browse files
authored
Merge pull request kubernetes#87947 from tanjunchen/remove-TODO-and-unused-code
remove TODO and unused code
2 parents 652f52b + 364c6f1 commit 09b13ae

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

test/e2e/framework/pod/wait.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,10 @@ const (
5454
podScheduledBeforeTimeout = podListTimeout + (20 * time.Second)
5555

5656
// podStartTimeout is how long to wait for the pod to be started.
57-
// Initial pod start can be delayed O(minutes) by slow docker pulls.
58-
// TODO: Make this 30 seconds once #4566 is resolved.
5957
podStartTimeout = 5 * time.Minute
6058

6159
// poll is how often to poll pods, nodes and claims.
62-
poll = 2 * time.Second
63-
pollShortTimeout = 1 * time.Minute
64-
pollLongTimeout = 5 * time.Minute
60+
poll = 2 * time.Second
6561

6662
// singleCallTimeout is how long to try single API calls (like 'get' or 'list'). Used to prevent
6763
// transient failures from failing tests.

test/e2e/framework/util.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ const (
8787
// PodListTimeout is how long to wait for the pod to be listable.
8888
PodListTimeout = time.Minute
8989
// PodStartTimeout is how long to wait for the pod to be started.
90-
// Initial pod start can be delayed O(minutes) by slow docker pulls.
91-
// TODO: Make this 30 seconds once #4566 is resolved.
9290
PodStartTimeout = 5 * time.Minute
9391

9492
// PodStartShortTimeout is same as `PodStartTimeout` to wait for the pod to be started, but shorter.

0 commit comments

Comments
 (0)