From 4e9e14c2b693faed594bbccd3121f82dc5ed490c Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 19 Jan 2022 11:09:29 -0800 Subject: [PATCH] Fix rdt build tags for go 1.16 Signed-off-by: Derek McGowan --- pkg/cri/server/rdt_linux.go | 1 + pkg/cri/server/rdt_stub_linux.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/cri/server/rdt_linux.go b/pkg/cri/server/rdt_linux.go index 9885da314..21b2876de 100644 --- a/pkg/cri/server/rdt_linux.go +++ b/pkg/cri/server/rdt_linux.go @@ -1,4 +1,5 @@ //go:build !no_rdt +// +build !no_rdt /* Copyright The containerd Authors. diff --git a/pkg/cri/server/rdt_stub_linux.go b/pkg/cri/server/rdt_stub_linux.go index 16d3e606e..179493562 100644 --- a/pkg/cri/server/rdt_stub_linux.go +++ b/pkg/cri/server/rdt_stub_linux.go @@ -1,4 +1,5 @@ //go:build no_rdt +// +build no_rdt /* Copyright The containerd Authors.