Skip to content

Commit

Permalink
Change checkIfPodsAreUpdated default to true
Browse files Browse the repository at this point in the history
We should switch default WaitForControllerPodsRunning behavior to the right one: where we correctly distinguish updated pods from state ones.
  • Loading branch information
mborsz committed Feb 11, 2020
1 parent e2316e0 commit ef0c6d8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ func (w *waitForControlledPodsRunningMeasurement) Execute(config *measurement.Me
if err != nil {
return nil, err
}
// TODO(mborsz): Change default to true.
w.checkIfPodsAreUpdated, err = util.GetBoolOrDefault(config.Params, "checkIfPodsAreUpdated", false)
w.checkIfPodsAreUpdated, err = util.GetBoolOrDefault(config.Params, "checkIfPodsAreUpdated", true)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit ef0c6d8

Please sign in to comment.