diff --git a/command/connect/envoy/exec_windows.go b/command/connect/envoy/exec_windows.go index 7b5bd951bd..e70108794c 100644 --- a/command/connect/envoy/exec_windows.go +++ b/command/connect/envoy/exec_windows.go @@ -42,7 +42,7 @@ func makeBootstrapPipe(bootstrapJSON []byte) (string, error) { } // Write the config - n, err = pipeConn.Write(bootstrapJSON) + n, err := pipeConn.Write(bootstrapJSON) if err != nil { return pipeFile, err }