Skip to content

Commit

Permalink
refactor: switches lifecycle state from active to live.
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcoffee committed Feb 22, 2022
1 parent 0947492 commit a256af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions remote/cloudmocks/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (m Remote) Deploy() (*remote.EndpointDetails, error) {
return nil, err
}

err = m.setMockState("ACTIVE")
err = m.setMockState("LIVE")
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -154,7 +154,7 @@ func (m Remote) waitForStatus(s string, shutDownC chan bool) bool {
return false
case success := <-finishedC:
finished = success
logrus.Tracef("finished probe with mock status at: %v", success)
logrus.Tracef("finished probe with desired mock status: %v", success)
return success
case <-shutDownC:
if !finished {
Expand Down

0 comments on commit a256af7

Please sign in to comment.