mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
There is a missing call to Close on the gzip.Writer that is used to compress newly created tar-split files during layer migration. This can result in corrupt tar-split files that later cause docker push and docker save to fail. The Close call is necessary to flush buffered data to the stream. Fixes: #20104 Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>