Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jgwest committed Sep 30, 2024
1 parent ae72067 commit 7f3a878
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions controllers/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,11 +330,14 @@ func updateStatusConditionOfRolloutManager(ctx context.Context, rr reconcileStat
}

if rr.phase != nil && *rr.phase != rm.Status.Phase {
fmt.Println("JGW4", *rr.phase, rm.Status.Phase)
rm.Status.Phase = *rr.phase

changed = true
}

if rr.rolloutController != nil && *rr.rolloutController != rm.Status.RolloutController {
fmt.Println("JGW5", *rr.rolloutController, rm.Status.RolloutController)
rm.Status.RolloutController = *rr.rolloutController
changed = true
}
Expand Down

0 comments on commit 7f3a878

Please sign in to comment.