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
bf2c9cce
Unverified
Commit
bf2c9cce
authored
Feb 27, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Feb 27, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74122 from draveness/feature/refactor-filter-active-pods
refactor: use FilterActivePods instead in replicaset controller
parents
7053e43b
590bf553
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
replica_set.go
pkg/controller/replicaset/replica_set.go
+1
-6
No files found.
pkg/controller/replicaset/replica_set.go
View file @
bf2c9cce
...
...
@@ -595,12 +595,7 @@ func (rsc *ReplicaSetController) syncReplicaSet(key string) error {
return
err
}
// Ignore inactive pods.
var
filteredPods
[]
*
v1
.
Pod
for
_
,
pod
:=
range
allPods
{
if
controller
.
IsPodActive
(
pod
)
{
filteredPods
=
append
(
filteredPods
,
pod
)
}
}
filteredPods
:=
controller
.
FilterActivePods
(
allPods
)
// NOTE: filteredPods are pointing to objects from cache - if you need to
// modify them, you need to copy it first.
...
...
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