remove redundant output when interrupting apply

The backend apply operation doesn't need to output the same text as the
cli itself. Instead notify the user that we are in the process of
stopping the operation.
This commit is contained in:
James Bardin 2017-04-25 11:44:51 -04:00
parent 6ef7c83ec5
commit 7dad3f4d48
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ func (b *Local) opApply(
select {
case <-ctx.Done():
if b.CLI != nil {
b.CLI.Output("Interrupt received. Gracefully shutting down...")
b.CLI.Output("stopping apply operation...")
}
// Stop execution