refactor(storage): Rename ServeLayer -> Serve

This is going to be used for general content-addressed objects, and is
not layer specific anymore.
This commit is contained in:
Vincent Ambo 2020-10-27 13:47:08 +01:00 committed by Vincent Ambo
parent 5ce745d104
commit cbbf45b5cb
4 changed files with 12 additions and 12 deletions

View file

@ -83,13 +83,13 @@ func (b *FSBackend) Move(ctx context.Context, old, new string) error {
return os.Rename(path.Join(b.path, old), newpath)
}
func (b *FSBackend) ServeLayer(digest string, r *http.Request, w http.ResponseWriter) error {
func (b *FSBackend) Serve(digest string, r *http.Request, w http.ResponseWriter) error {
p := path.Join(b.path, "layers", digest)
log.WithFields(log.Fields{
"layer": digest,
"path": p,
}).Info("serving layer from filesystem")
"digest": digest,
"path": p,
}).Info("serving blob from filesystem")
http.ServeFile(w, r, p)
return nil