Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@Slf4j
@Component
@Profile("perf") // perf 환경일 때만 빈으로 등록
@Profile({"perf", "prod"}) // perf 환경일 때(+ 임시로 prod에서도)만 빈으로 등록
Comment thread
ji-circle marked this conversation as resolved.
public class PerfReservationValidationAdapter implements ReservationValidationPort {

private static final LocalDate FIXED_PERF_DATE = LocalDate.of(2026, 12, 31);
Expand Down
Loading