-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/48917/
-----------------------------------------------------------
(Updated June 18, 2016, 5:19 p.m.)
Review request for mesos, Artem Harutyunyan, Jie Yu, and Timothy Chen.
Changes
-------
Updated comments and commit message.
Bugs: MESOS-5172
https://issues.apache.org/jira/browse/MESOS-5172
Repository: mesos
Description (updated)
-------
The root cause for this issue is that, in private registry
like quay.io, layer download request will be redirected to
storage server in S3. However, the curl command with '-L'
handles HTTP redirection automatically, in which case HTTP
headers will be attached to all requests. AmazonS3 server
will return 400 Bad Request if HTTP Authorization header
is attached, with 'InvalidArgument' error code. So we need
to touch the given URL first to add extra logic for HTTP
redirections.
Diffs (updated)
-----
src/uri/fetchers/docker.cpp 211be6fdf416621c467faa5592c9e52a49b450ca
Diff: https://reviews.apache.org/r/48917/diff/
Testing
-------
make check
Tested with quay.io/gilbertsong/inky manually.
Thanks,
Gilbert Song