From f444696989635c4631d0f5cdb00ac364225cf2a4 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Wed, 23 Jan 2019 16:06:49 -0500 Subject: [PATCH] Return out of windows signal handler Signed-off-by: Michael Crosby --- runtime/v2/shim/shim_windows.go | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/v2/shim/shim_windows.go b/runtime/v2/shim/shim_windows.go index d6dedb780..e9d9db7ba 100644 --- a/runtime/v2/shim/shim_windows.go +++ b/runtime/v2/shim/shim_windows.go @@ -113,6 +113,7 @@ func handleSignals(logger *logrus.Entry, signals chan os.Signal) error { for s := range signals { switch s { case os.Interrupt: + return nil } } }