From bc3f59a6ad2109bd593cc8aa3eb79ba166eee0fb Mon Sep 17 00:00:00 2001 From: Josh Yan Date: Fri, 5 Jul 2024 15:14:09 -0700 Subject: [PATCH] rmv prints --- server/routes.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/routes.go b/server/routes.go index 7e6bbf085..d817346d5 100644 --- a/server/routes.go +++ b/server/routes.go @@ -769,13 +769,11 @@ func (s *Server) CreateBlobHandler(c *gin.Context) { } } - fmt.Println("path2", c.Param("digest")) path, err := GetBlobsPath(c.Param("digest")) if err != nil { c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": err.Error()}) return } - fmt.Println("path1", path) _, err = os.Stat(path) switch { case errors.Is(err, os.ErrNotExist):