Skip to content

Commit

Permalink
fix: make function call consistent with otherRSs definition (argoproj…
Browse files Browse the repository at this point in the history
…#1171)

Signed-off-by: Hui Kang <hui.kang@salesforce.com>
Signed-off-by: caoyang001 <caoyang001@foxmail.com>
  • Loading branch information
huikang authored and caoyang001 committed Jun 12, 2021
1 parent 296a585 commit acba834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollout/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ func (c *Controller) newRolloutContext(rollout *v1alpha1.Rollout) (*rolloutConte
newRS := replicasetutil.FindNewReplicaSet(rollout, rsList)
olderRSs := replicasetutil.FindOldReplicaSets(rollout, rsList)
stableRS := replicasetutil.GetStableRS(rollout, newRS, olderRSs)
otherRSs := replicasetutil.GetOtherRSs(rollout, newRS, stableRS, olderRSs)
otherRSs := replicasetutil.GetOtherRSs(rollout, newRS, stableRS, rsList)

exList, err := c.getExperimentsForRollout(rollout)
if err != nil {
Expand Down

0 comments on commit acba834

Please sign in to comment.