Skip to content

Commit

Permalink
[hotfix] S3ServiceImpl 내 @value 주입 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinkonu committed Sep 6, 2024
1 parent 89a156e commit 71c4d05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 71c4d05

Please sign in to comment.