Skip to content

Commit

Permalink
feat: 기존 테스트에서 사용되는 프로파일 이름 수정 default -> test
Browse files Browse the repository at this point in the history
  • Loading branch information
Libienz committed Dec 19, 2024
1 parent 658c737 commit 0d1d484
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</rollingPolicy>
</appender>

<springProfile name="default">
<springProfile name="test">
<root level="INFO">
<appender-ref ref="CONSOLE"/>
</root>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import software.amazon.awssdk.services.s3.model.CreateBucketRequest;

@Configuration
@Profile("default")
@Profile("test")
public class S3TestConfig {

@Value("${cloud.aws.s3.bucket}")
Expand Down

0 comments on commit 0d1d484

Please sign in to comment.