mirror of
https://github.com/distribution/distribution.git
synced 2025-08-19 23:38:13 +00:00
Add mod time to registry blob descriptor
This commit is contained in:
parent
e465862185
commit
0e4a61bbae
4
blobs.go
4
blobs.go
@ -66,6 +66,10 @@ type Descriptor struct {
|
|||||||
// Size in bytes of content.
|
// Size in bytes of content.
|
||||||
Size int64 `json:"size,omitempty"`
|
Size int64 `json:"size,omitempty"`
|
||||||
|
|
||||||
|
// ModTime modification time for the file. For backends that
|
||||||
|
// don't have a modification time this may represent the creation time
|
||||||
|
ModTime time.Time
|
||||||
|
|
||||||
// Digest uniquely identifies the content. A byte stream can be verified
|
// Digest uniquely identifies the content. A byte stream can be verified
|
||||||
// against this digest.
|
// against this digest.
|
||||||
Digest digest.Digest `json:"digest,omitempty"`
|
Digest digest.Digest `json:"digest,omitempty"`
|
||||||
|
@ -200,6 +200,7 @@ func (bs *blobStatter) Stat(ctx context.Context, dgst digest.Digest) (distributi
|
|||||||
// for the specific repository.
|
// for the specific repository.
|
||||||
MediaType: "application/octet-stream",
|
MediaType: "application/octet-stream",
|
||||||
Digest: dgst,
|
Digest: dgst,
|
||||||
|
ModTime: fi.ModTime(),
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user