From 45d0476a06249657cbd4a0338f4650868b591d45 Mon Sep 17 00:00:00 2001 From: zzzzseong Date: Mon, 29 Jan 2024 15:30:23 +0900 Subject: [PATCH] =?UTF-8?q?fix(CI/CD):=20ProductController=20V2=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/sportsecho/product/controller/ProductController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sportsecho/product/controller/ProductController.java b/src/main/java/com/sportsecho/product/controller/ProductController.java index 69158fe7..71796b53 100644 --- a/src/main/java/com/sportsecho/product/controller/ProductController.java +++ b/src/main/java/com/sportsecho/product/controller/ProductController.java @@ -27,7 +27,7 @@ public class ProductController { private final ProductService productService; @Autowired - public ProductController(@Qualifier("V1") ProductService productService) { + public ProductController(@Qualifier("V2") ProductService productService) { this.productService = productService; }