diff options
author | Tamir Duberstein <tamird@google.com> | 2021-10-27 18:20:05 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-10-27 18:22:30 -0700 |
commit | d350c95b04d594abedaad1846f35304b55194e84 (patch) | |
tree | 1d0f4294b3b15c608b713ecc69ec4a3b2c34128e /runsc/cgroup/BUILD | |
parent | 6078d26588c021d4b78501ad25cb725ff2db797e (diff) |
Replace bespoke WaitGroupErr with errgroup
PiperOrigin-RevId: 406027220
Diffstat (limited to 'runsc/cgroup/BUILD')
-rw-r--r-- | runsc/cgroup/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cgroup/BUILD b/runsc/cgroup/BUILD index d3aec1fff..4dcbc285a 100644 --- a/runsc/cgroup/BUILD +++ b/runsc/cgroup/BUILD @@ -9,9 +9,9 @@ go_library( deps = [ "//pkg/cleanup", "//pkg/log", - "//pkg/sync", "@com_github_cenkalti_backoff//:go_default_library", "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", + "@org_golang_x_sync//errgroup:go_default_library", "@org_golang_x_sys//unix:go_default_library", ], ) |