From 14f18f42364be53b1e3b4e48e6d9f0923092411f Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Tue, 12 May 2020 11:29:09 +0200 Subject: [PATCH] dont catch signals in console, as it seems unecessary for now --- command/console.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/command/console.go b/command/console.go index 2db92e846..eeeba14d4 100644 --- a/command/console.go +++ b/command/console.go @@ -31,8 +31,7 @@ type ConsoleCommand struct { } func (c *ConsoleCommand) Run(args []string) int { - ctx, cleanup := handleTermInterrupt(c.Ui) - defer cleanup() + ctx := context.Background() cfg, ret := c.ParseArgs(args) if ret != 0 {