summaryrefslogtreecommitdiffhomepage
path: root/pkg/shim/v2/runtimeoptions/runtimeoptions.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/shim/v2/runtimeoptions/runtimeoptions.go')
-rw-r--r--pkg/shim/v2/runtimeoptions/runtimeoptions.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/shim/v2/runtimeoptions/runtimeoptions.go b/pkg/shim/v2/runtimeoptions/runtimeoptions.go
index 1c1a0c5d1..aaf17b87a 100644
--- a/pkg/shim/v2/runtimeoptions/runtimeoptions.go
+++ b/pkg/shim/v2/runtimeoptions/runtimeoptions.go
@@ -23,5 +23,8 @@ import (
type Options = pb.Options
func init() {
+ // The generated proto file auto registers with "golang/protobuf/proto"
+ // package. However, typeurl uses "golang/gogo/protobuf/proto". So registers
+ // the type there too.
proto.RegisterType((*Options)(nil), "cri.runtimeoptions.v1.Options")
}