Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
46becf2c
Commit
46becf2c
authored
Feb 08, 2017
by
Jess Frazelle
Committed by
GitHub
Feb 08, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #41157 from dashpole/test_timeout_delete
lengthen pod deletion timeout to prevent flakes
parents
bd17091e
ab2ce9cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pods.go
test/e2e/pods.go
+1
-1
lifecycle_hook_test.go
test/e2e_node/lifecycle_hook_test.go
+1
-1
No files found.
test/e2e/pods.go
View file @
46becf2c
...
...
@@ -164,7 +164,7 @@ var _ = framework.KubeDescribe("Pods Extended", func() {
deleted
:=
false
timeout
:=
false
var
lastPod
*
v1
.
Pod
timer
:=
time
.
After
(
30
*
time
.
Second
)
timer
:=
time
.
After
(
1
*
time
.
Minute
)
for
!
deleted
&&
!
timeout
{
select
{
case
event
,
_
:=
<-
w
.
ResultChan
()
:
...
...
test/e2e_node/lifecycle_hook_test.go
View file @
46becf2c
...
...
@@ -35,7 +35,7 @@ var _ = framework.KubeDescribe("Container Lifecycle Hook", func() {
var
podClient
*
framework
.
PodClient
const
(
podCheckInterval
=
1
*
time
.
Second
podWaitTimeout
=
2
*
time
.
Minute
podWaitTimeout
=
3
*
time
.
Minute
postStartWaitTimeout
=
2
*
time
.
Minute
preStopWaitTimeout
=
30
*
time
.
Second
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment