remove unused parameter

This commit is contained in:
Michael Yang
2023-08-28 18:35:18 -04:00
parent 246dc65417
commit 16b06699fd
2 changed files with 2 additions and 2 deletions

View File

@@ -974,7 +974,7 @@ func PushModel(ctx context.Context, name string, regOpts *RegistryOptions, fn fu
continue
}
if err := uploadBlobChunked(ctx, mp, location, layer, regOpts, fn); err != nil {
if err := uploadBlobChunked(ctx, location, layer, regOpts, fn); err != nil {
log.Printf("error uploading blob: %v", err)
return err
}