(ctx context.Context)
| 110 | } |
| 111 | |
| 112 | func (s *sandboxClient) Stop(ctx context.Context) error { |
| 113 | return s.client.SandboxController(s.metadata.Sandboxer).Stop(ctx, s.ID()) |
| 114 | } |
| 115 | |
| 116 | func (s *sandboxClient) Shutdown(ctx context.Context) error { |
| 117 | if err := s.client.SandboxController(s.metadata.Sandboxer).Shutdown(ctx, s.ID()); err != nil && !errdefs.IsNotFound(err) { |
nothing calls this directly
no test coverage detected