Merge pull request #3209 from zhipengzuo/master
clean up code because err is always nil
This commit is contained in:
commit
208d68bd5c
1 changed files with 2 additions and 7 deletions
|
@ -72,15 +72,10 @@ func (pbs *proxyBlobStore) serveLocal(ctx context.Context, w http.ResponseWriter
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if err == nil {
|
|
||||||
proxyMetrics.BlobPush(uint64(localDesc.Size))
|
proxyMetrics.BlobPush(uint64(localDesc.Size))
|
||||||
return true, pbs.localStore.ServeBlob(ctx, w, r, dgst)
|
return true, pbs.localStore.ServeBlob(ctx, w, r, dgst)
|
||||||
}
|
}
|
||||||
|
|
||||||
return false, nil
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (pbs *proxyBlobStore) storeLocal(ctx context.Context, dgst digest.Digest) error {
|
func (pbs *proxyBlobStore) storeLocal(ctx context.Context, dgst digest.Digest) error {
|
||||||
defer func() {
|
defer func() {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
|
|
Loading…
Reference in a new issue