From e50f2258be90787dc2e6fa0af169404b65e47f85 Mon Sep 17 00:00:00 2001 From: Raymond Ho Date: Tue, 1 Apr 2025 10:56:49 -0700 Subject: [PATCH] fix rootless typo (#30135) --- sdk/helper/pluginruntimeutil/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/helper/pluginruntimeutil/config.go b/sdk/helper/pluginruntimeutil/config.go index f674c7df36..62e402c18c 100644 --- a/sdk/helper/pluginruntimeutil/config.go +++ b/sdk/helper/pluginruntimeutil/config.go @@ -13,5 +13,5 @@ type PluginRuntimeConfig struct { CgroupParent string `json:"cgroup_parent" structs:"cgroup_parent"` CPU int64 `json:"cpu" structs:"cpu"` Memory int64 `json:"memory" structs:"memory"` - Rootless bool `json:"rootless" structs:"rootlesss"` + Rootless bool `json:"rootless" structs:"rootless"` }