From 27073a4abb81f7d3f64448004bbf783f36762c4f Mon Sep 17 00:00:00 2001 From: absolutelightning Date: Wed, 28 Jun 2023 08:13:15 +0530 Subject: [PATCH] fix Map funciton call --- command/connect/envoy/exec_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/connect/envoy/exec_windows.go b/command/connect/envoy/exec_windows.go index 769950e63f..a1a72f3844 100644 --- a/command/connect/envoy/exec_windows.go +++ b/command/connect/envoy/exec_windows.go @@ -23,7 +23,7 @@ func makeBootstrapTemp(bootstrapJSON []byte) (string, error) { return tempFile, err } - f, err := mmap.Map(file) + f, err := mmap.Map(file, 0, 0) if err != nil { return tempFile, err }