Skip to content

Commit

Permalink
Change status print to a info message when finishing a rolling deploy…
Browse files Browse the repository at this point in the history
…ment with --no-wait
  • Loading branch information
Cristhian Peña committed Nov 13, 2023
1 parent 9bfa0ea commit e3eaaae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions command/v7/shared/app_stager.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ func (stager *Stager) StartApp(
if err != nil {
return err
}
if noWait == true {
stager.UI.DisplayText("First instance restaged correctly, restaging remaining in the background")
return nil
}
} else {
user, err := stager.Actor.GetCurrentUser()
if err != nil {
Expand Down

0 comments on commit e3eaaae

Please sign in to comment.