From 71c4d056db73253cbb63f8dadb497922a29aec8d Mon Sep 17 00:00:00 2001 From: Jin Geonwoo Date: Fri, 6 Sep 2024 19:29:06 +0900 Subject: [PATCH] =?UTF-8?q?[hotfix]=20S3ServiceImpl=20=EB=82=B4=20@Value?= =?UTF-8?q?=20=EC=A3=BC=EC=9E=85=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/recordy/server/record/service/impl/S3ServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/recordy/server/record/service/impl/S3ServiceImpl.java b/src/main/java/org/recordy/server/record/service/impl/S3ServiceImpl.java index e170cf24..b4e447f0 100644 --- a/src/main/java/org/recordy/server/record/service/impl/S3ServiceImpl.java +++ b/src/main/java/org/recordy/server/record/service/impl/S3ServiceImpl.java @@ -22,9 +22,9 @@ public class S3ServiceImpl implements S3Service { public S3ServiceImpl( S3Presigner presigner, - @Value("${aws-property.s3-bucket-name}") String s3Domain, + @Value("${aws-property.s3-domain}") String s3Domain, @Value("${aws-property.cloudfront-domain-name}") String cloudFrontDomain, - @Value("${aws-property.s3-domain}") String bucket + @Value("${aws-property.s3-bucket-name}") String bucket ) { this.presigner = presigner; this.s3Domain = s3Domain;