From 7dad3f4d48abebeb71da625b74d9b324bab3f045 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 25 Apr 2017 11:44:51 -0400 Subject: [PATCH] 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. --- backend/local/backend_apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/local/backend_apply.go b/backend/local/backend_apply.go index 8fec2019e1..9bc41f4877 100644 --- a/backend/local/backend_apply.go +++ b/backend/local/backend_apply.go @@ -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