mirror of https://github.com/docker/docs.git
registry: Removed checksumPayload from exported fields
Docker-DCO-1.1-Signed-off-by: Sam Alba <sam@docker.com> (github: samalba)
This commit is contained in:
parent
f420bb2979
commit
522c0765f1
|
@ -389,7 +389,7 @@ func (r *Registry) PushImageChecksumRegistry(imgData *ImgData, registry string,
|
||||||
}
|
}
|
||||||
setTokenAuth(req, token)
|
setTokenAuth(req, token)
|
||||||
req.Header.Set("X-Docker-Checksum", imgData.Checksum)
|
req.Header.Set("X-Docker-Checksum", imgData.Checksum)
|
||||||
req.Header.Set("X-Docker-Checksum-Payload", imgData.ChecksumPayload)
|
req.Header.Set("X-Docker-Checksum-Payload", imgData.checksumPayload)
|
||||||
|
|
||||||
res, err := doWithCookies(r.client, req)
|
res, err := doWithCookies(r.client, req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -679,8 +679,8 @@ type RepositoryData struct {
|
||||||
type ImgData struct {
|
type ImgData struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Checksum string `json:"checksum,omitempty"`
|
Checksum string `json:"checksum,omitempty"`
|
||||||
ChecksumPayload string `json:"checksum,omitempty"`
|
|
||||||
Tag string `json:",omitempty"`
|
Tag string `json:",omitempty"`
|
||||||
|
checksumPayload string
|
||||||
}
|
}
|
||||||
|
|
||||||
type Registry struct {
|
type Registry struct {
|
||||||
|
|
|
@ -1509,7 +1509,7 @@ func (srv *Server) pushImage(r *registry.Registry, out io.Writer, remote, imgID,
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
imgData.Checksum = checksum
|
imgData.Checksum = checksum
|
||||||
imgData.ChecksumPayload = checksumPayload
|
imgData.checksumPayload = checksumPayload
|
||||||
// Send the checksum
|
// Send the checksum
|
||||||
if err := r.PushImageChecksumRegistry(imgData, ep, token); err != nil {
|
if err := r.PushImageChecksumRegistry(imgData, ep, token); err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
|
Loading…
Reference in New Issue