Skip to content

Commit

Permalink
update :: add open keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
yoontaebin123 committed Nov 13, 2024
1 parent bc0b138 commit 1dbe7a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ open class AwsS3Config(
@Value("\${cloud.aws.region.static}")
private val region: String? = null
@Bean
fun amazonS3(): AmazonS3 {
open fun amazonS3(): AmazonS3 {
val awsCredentials: AWSCredentials = BasicAWSCredentials(awsProperties.accessKey, awsProperties.secretKey)
return AmazonS3ClientBuilder.standard()
.withRegion(region)
Expand Down

0 comments on commit 1dbe7a9

Please sign in to comment.