Skip to content

Commit ab72331

Browse files
authored
internal/telemetry: disable telemetry on z/OS
1 parent 525ce2e commit ab72331

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/telemetry/dir.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,5 @@ const DisabledOnPlatform = false ||
160160
runtime.GOOS == "js" || // #60971
161161
runtime.GOOS == "wasip1" || // #60971
162162
runtime.GOOS == "plan9" || // https://github.com/golang/go/issues/57540#issuecomment-1470766639
163-
runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" // mips lacks cross-process 64-bit atomics
163+
runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" || // mips lacks cross-process 64-bit atomics
164+
runtime.GOOS == "zos" // zos is an unofficial port

0 commit comments

Comments
 (0)