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 33c446d commit eca1163
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 @@ -171,6 +171,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.Config.CurrentUser()
if err != nil {
Expand Down

0 comments on commit eca1163

Please sign in to comment.