From d0a66c4c403fc93b209b98b8cc9f4d1e2ddf2356 Mon Sep 17 00:00:00 2001 From: Paul Gier Date: Fri, 10 May 2019 13:04:06 -0500 Subject: use sys/unix package instead of syscall (#1340) According to the golang docs, the syscall package is deprecated. https://golang.org/pkg/syscall This updates collectors to use the x/sys/unix package instead. Also updates the vendored x/sys/unix module to latest. Signed-off-by: Paul Gier --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index eb62ead..3a0fb37 100644 --- a/go.mod +++ b/go.mod @@ -27,6 +27,6 @@ require ( go.uber.org/multierr v1.1.0 // indirect golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect - golang.org/x/sys v0.0.0-20190507053917-2953c62de483 + golang.org/x/sys v0.0.0-20190509141414-a5b02f93d862 gopkg.in/alecthomas/kingpin.v2 v2.2.6 ) -- cgit v1.2.3