From 1dbe7a9fe93fe1ece5a7ac5e753c92d28ec44325 Mon Sep 17 00:00:00 2001 From: yoontaebin Date: Wed, 13 Nov 2024 17:26:20 +0900 Subject: [PATCH] update :: add open keyword --- .../main/kotlin/com/goms/v2/thirdparty/aws/s3/AwsS3Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goms-infrastructure/src/main/kotlin/com/goms/v2/thirdparty/aws/s3/AwsS3Config.kt b/goms-infrastructure/src/main/kotlin/com/goms/v2/thirdparty/aws/s3/AwsS3Config.kt index 1315e4d..d0853bd 100644 --- a/goms-infrastructure/src/main/kotlin/com/goms/v2/thirdparty/aws/s3/AwsS3Config.kt +++ b/goms-infrastructure/src/main/kotlin/com/goms/v2/thirdparty/aws/s3/AwsS3Config.kt @@ -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)