This is an automated email from the ASF dual-hosted git repository. qianzhang pushed a commit to branch 1.5.x in repository https://gitbox.apache.org/repos/asf/mesos.git
commit 85a5827178065bfb1ef74cd0b672fc6f1c965d76 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 9fe943a..2a39995 100644 --- a/src/uri/fetchers/docker.cpp +++ b/src/uri/fetchers/docker.cpp @@ -970,6 +970,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(
