Skip to content

Commit

Permalink
ALS-7014: Set default parameter values
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Sep 3, 2024
1 parent e69e440 commit 9d0a260
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class SignUrlService {

@Autowired
public SignUrlService(
@Value("${data-export.s3.bucket-name}") String bucketName,
@Value("${data-export.s3.region}") String region,
@Value("${data-export.s3.bucket-name:}") String bucketName,
@Value("${data-export.s3.region:us-east-1}") String region,
@Value("${data-export.s3.signedUrl-expiry-minutes:60}") int signedUrlExpiryMinutes
) {
this.bucketName = bucketName;
Expand Down

0 comments on commit 9d0a260

Please sign in to comment.