This is an automated email from the ASF dual-hosted git repository. qianzhang pushed a commit to branch 1.4.x in repository https://gitbox.apache.org/repos/asf/mesos.git
commit 46b1a62b4d3838d54d5d9ecba3ed76eb9b2bddda Author: Gilbert Song <[email protected]> AuthorDate: Sat Mar 23 21:14:15 2019 -0700 Added a TODO for additional URLs support. Review: https://reviews.apache.org/r/70289 --- src/uri/fetchers/docker.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uri/fetchers/docker.cpp b/src/uri/fetchers/docker.cpp index da814d8..cb0124c 100644 --- a/src/uri/fetchers/docker.cpp +++ b/src/uri/fetchers/docker.cpp @@ -947,6 +947,8 @@ Future<Nothing> DockerFetcherPluginProcess::urlFetchBlob( return Failure("Schema 2 manifest does not exist"); } + // TODO(gilbert): Support v2s2 additional urls for non-windows platforms. + // We should avoid parsing the manifest for each layer. Try<spec::v2_2::ImageManifest> manifest = spec::v2_2::parse(_manifest.get()); if (manifest.isError()) { return Failure(
