mirror of
https://github.com/distribution/distribution
synced 2024-11-06 19:35:52 +01:00
Fix typo in manifestLayers variable name
Signed-off-by: Andrew Leung <anwleung@gmail.com>
This commit is contained in:
parent
276fdce3d9
commit
54aef6251e
@ -13,7 +13,7 @@ import (
|
||||
|
||||
type bridge struct {
|
||||
ub URLBuilder
|
||||
manfiestLayers bool
|
||||
manifestLayers bool
|
||||
actor ActorRecord
|
||||
source SourceRecord
|
||||
request RequestRecord
|
||||
@ -35,7 +35,7 @@ type URLBuilder interface {
|
||||
func NewBridge(ub URLBuilder, source SourceRecord, actor ActorRecord, request RequestRecord, sink Sink, manifestLayers bool) Listener {
|
||||
return &bridge{
|
||||
ub: ub,
|
||||
manfiestLayers: manifestLayers,
|
||||
manifestLayers: manifestLayers,
|
||||
actor: actor,
|
||||
source: source,
|
||||
request: request,
|
||||
@ -146,7 +146,7 @@ func (b *bridge) createManifestEvent(action string, repo reference.Named, sm dis
|
||||
event.Target.Length = desc.Size
|
||||
event.Target.Size = desc.Size
|
||||
event.Target.Digest = desc.Digest
|
||||
if b.manfiestLayers {
|
||||
if b.manifestLayers {
|
||||
event.Target.Layers = append(event.Target.Layers, manifest.References()...)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user