Skip to content

Commit

Permalink
refactor: @Profile test, performance 환경 제외하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
GIVEN53 committed Nov 23, 2023
1 parent 1df9c32 commit 32073b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Aspect
@RequiredArgsConstructor
@Slf4j
@Profile({"!test", "!performance"})
@Profile("!test & !performance")
public class LogAspect {
private final RestTemplate restTemplate;
@Value("${fluentbit.server-log-url}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author EVE
* @since 1.0.0
*/
@Profile("!test")
@Profile("!test & !performance")
@Configuration
@EnableRedisRepositories
public class RedisConfig {
Expand Down

0 comments on commit 32073b8

Please sign in to comment.