From f500139a89fbc596fb6e254fc363f807109b5875 Mon Sep 17 00:00:00 2001 From: absolutelightning Date: Mon, 3 Jul 2023 21:42:24 +0530 Subject: [PATCH] dont wait --- command/connect/envoy/exec_windows.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/command/connect/envoy/exec_windows.go b/command/connect/envoy/exec_windows.go index 92d50c4fc3..72589e772f 100644 --- a/command/connect/envoy/exec_windows.go +++ b/command/connect/envoy/exec_windows.go @@ -47,12 +47,6 @@ func makeBootstrapPipe(bootstrapJSON []byte) (string, error) { return pipeFile, err } - // Wait for the command to finish - err = cmd.Wait() - if err != nil { - return pipeFile, err - } - // We can't wait for the process since we need to exec into Envoy before it // will be able to complete so it will be remain as a zombie until Envoy is // killed then will be reaped by the init process (pid 0). This is all a bit