Skip to content

Commit

Permalink
#539 [feat] PresignedUrl 만료시간 연장
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Oct 19, 2024
1 parent 762065d commit bc0fea5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@Component
public class S3Service {

private static final Long PRE_SIGNED_URL_EXPIRE_MINUTE = 1L; // 만료시간 2시간
private static final Long PRE_SIGNED_URL_EXPIRE_MINUTE = 1000L * 60 * 60 * 2; // 만료시간 2시간

private final String bucketName;
private final AwsConfig awsConfig;
Expand Down

0 comments on commit bc0fea5

Please sign in to comment.