mirror of
https://github.com/moby/moby.git
synced 2026-07-06 22:58:25 +00:00
The execution-driver was replaced with containerd since docker 1.11 (API v1.23) in9c4570a958, after which the value was no longer set. The field was left in the type definition. Commit1fb1136fecremoved its use from the CLI and [docker/engine-api@39c7d7e] removed it from the API type, followed by an update to the API docs in3c6ef4c29d. Changes to the API types were not pulled into the engine until v1.13, and probably because of that gated it on API version < 1.25 instead of < 1.24 (see6d98e344c7); setting a "not supported" value for older versions. Based on the above; this field was deprecated in API v1.23, and empty since then. Given that the minimum API version supported by the engine is not v1.24, we can safely remove it. [docker/engine-api@39c7d7e]:39c7d7ec19Signed-off-by: Sebastiaan van Stijn <github@gone.nl>