summaryrefslogtreecommitdiffhomepage
path: root/runsc
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-09-10 06:02:03 +0000
committergVisor bot <gvisor-bot@google.com>2021-09-10 06:02:03 +0000
commitd1edc9eeab14a7dcb855ebc394d44bdfa0d192f3 (patch)
treed773da545254b3b5ffe00031f2ffd6485a4815d8 /runsc
parent5f09b62a58717ce83427f2d8d270604762794809 (diff)
parent7da9bb18c28bdd874e928d85363e1f99cea03b2c (diff)
Merge release-20210830.0-31-g7da9bb18c (automated)
Diffstat (limited to 'runsc')
-rw-r--r--runsc/config/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/config/config.go b/runsc/config/config.go
index 2ce8cc006..a230baa29 100644
--- a/runsc/config/config.go
+++ b/runsc/config/config.go
@@ -404,7 +404,7 @@ func (c *controlConfig) Get() interface{} {
// String implements flag.Value.
func (c *controlConfig) String() string {
v := ""
- for _, control := range c.Controls.AllowedControls {
+ for _, control := range c.Controls.GetAllowedControls() {
if len(v) > 0 {
v += ","
}