You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Additional shim options may be provided via Stdin
238
+
// See https://github.com/containerd/containerd/blob/c9afc4250ab183f9e944297c15df705851b3ec42/runtime/v2/shim/util.go#L116
239
+
Options: os.Stdin,
236
240
}
237
241
address, err:=service.StartShim(ctx, opts)
238
242
iferr!=nil {
@@ -297,6 +301,11 @@ func (s *Client) Serve() error {
297
301
logrus.Debug("registering ttrpc server")
298
302
shimapi.RegisterTaskService(server, s.service)
299
303
304
+
// Register sandbox service if this shim is able to manage sandboxed environments
305
+
ifsb, ok:=s.service.(shimapi.SandboxService); ok {
0 commit comments