Browse Source

remove unnecessary fmt.Sprintf

Michael Yang 1 year ago
parent
commit
70e0ab6b3d
1 changed files with 1 additions and 4 deletions
  1. 1 4
      server/images.go

+ 1 - 4
server/images.go

@@ -873,14 +873,11 @@ func checkBlobExistence(mp ModelPath, digest string, regOpts *RegistryOptions) (
 	return resp.StatusCode == http.StatusOK, nil
 }
 
-func uploadBlobChunked(mp ModelPath, location string, layer *Layer, regOpts *RegistryOptions, fn func(api.ProgressResponse)) error {
+func uploadBlobChunked(mp ModelPath, url string, layer *Layer, regOpts *RegistryOptions, fn func(api.ProgressResponse)) error {
 	// TODO allow resumability
 	// TODO allow canceling uploads via DELETE
 	// TODO allow cross repo blob mount
 
-	// Create URL
-	url := location
-
 	fp, err := GetBlobsPath(layer.Digest)
 	if err != nil {
 		return err