From d4ab994ade04fb2360098516c706d5f0c0773764 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 06acf83e2..03579269e 100644 --- a/server/routes.go +++ b/server/routes.go @@ -927,13 +927,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):