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
40a6d68e
Commit
40a6d68e
authored
Jul 27, 2016
by
k8s-merge-robot
Committed by
GitHub
Jul 27, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #29541 from lixiaobing10051267/masterTimeOut2
Automatic merge from submit-queue Log information wrong while wait.ForeverTestTimeout
parents
1ae9b73c
9be345cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
replica_set_test.go
pkg/controller/replicaset/replica_set_test.go
+2
-2
replication_controller_test.go
pkg/controller/replication/replication_controller_test.go
+2
-2
No files found.
pkg/controller/replicaset/replica_set_test.go
View file @
40a6d68e
...
...
@@ -481,7 +481,7 @@ func TestWatchControllers(t *testing.T) {
select
{
case
<-
received
:
case
<-
time
.
After
(
wait
.
ForeverTestTimeout
)
:
t
.
Errorf
(
"
Expected 1 call but got 0
"
)
t
.
Errorf
(
"
unexpected timeout from result channel
"
)
}
}
...
...
@@ -528,7 +528,7 @@ func TestWatchPods(t *testing.T) {
select
{
case
<-
received
:
case
<-
time
.
After
(
wait
.
ForeverTestTimeout
)
:
t
.
Errorf
(
"
Expected 1 call but got 0
"
)
t
.
Errorf
(
"
unexpected timeout from result channel
"
)
}
}
...
...
pkg/controller/replication/replication_controller_test.go
View file @
40a6d68e
...
...
@@ -466,7 +466,7 @@ func TestWatchControllers(t *testing.T) {
select
{
case
<-
received
:
case
<-
time
.
After
(
wait
.
ForeverTestTimeout
)
:
t
.
Errorf
(
"
Expected 1 call but got 0
"
)
t
.
Errorf
(
"
unexpected timeout from result channel
"
)
}
}
...
...
@@ -512,7 +512,7 @@ func TestWatchPods(t *testing.T) {
select
{
case
<-
received
:
case
<-
time
.
After
(
wait
.
ForeverTestTimeout
)
:
t
.
Errorf
(
"
Expected 1 call but got 0
"
)
t
.
Errorf
(
"
unexpected timeout from result channel
"
)
}
}
...
...
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