From ab72331cea01d2d5f24d89039c067221525caced Mon Sep 17 00:00:00 2001 From: Mac Malainey Date: Sun, 1 Dec 2024 20:06:59 -0500 Subject: [PATCH] internal/telemetry: disable telemetry on z/OS --- internal/telemetry/dir.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/telemetry/dir.go b/internal/telemetry/dir.go index 0673be5..26dcb04 100644 --- a/internal/telemetry/dir.go +++ b/internal/telemetry/dir.go @@ -160,4 +160,5 @@ const DisabledOnPlatform = false || runtime.GOOS == "js" || // #60971 runtime.GOOS == "wasip1" || // #60971 runtime.GOOS == "plan9" || // https://github.com/golang/go/issues/57540#issuecomment-1470766639 - runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" // mips lacks cross-process 64-bit atomics + runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" || // mips lacks cross-process 64-bit atomics + runtime.GOOS == "zos" // zos is an unofficial port