Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-29 | Redirect all calls from `errdefs.ToGRPC` to `utils.ErrToGRPC` | Fabricio Voznika | |
This is to ensure that Go 1.13 error wrapping is correctly translated to gRPC errors before returning from the shim. Updates #6225 PiperOrigin-RevId: 382120441 | |||
2021-06-24 | Merge pull request #6228 from ↵ | gVisor bot | |
puppetlabs:fix-shim-pid-leaking-on-stopped-processes PiperOrigin-RevId: 381341920 | |||
2021-06-23 | Ensure shim propagates errors over gRPC correctly | Noah Fontes | |
This change wraps containerd's errdefs.ToGRPC function with one that understands Go 1.13-style error wrapping style, which is used pervasively throughout the shim. With this change, errors that have been marked with, e.g., `errdefs.ErrNotFound`, will be correctly propagated back to the containerd server. |