Skip to content
Merged
Show file tree
Hide file tree
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 @@ -16,7 +16,7 @@ public class FastApiClient {
private final RestTemplate restTemplate;

// FastAPI 서버의 ping 엔드포인트 URL을 상수로 하드코딩합니다.
private static final String FASTAPI_PING_URL = "http://localhost:8000/ping";
private static final String FASTAPI_PING_URL = "http://pre-processing-service:8000";

/**
* FastAPI 서버의 /ping 엔드포인트를 호출하여 연결을 테스트합니다.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public PasswordEncoder bCryptPasswordEncoder() {
String[] activeProfiles = environment.getActiveProfiles();

for (String profile : activeProfiles) {
if ("develop".equals(profile) || profile.contains("test")) {
if ("develop".equals(profile) || profile.contains("test") || "production".equals(profile)) {
return NoOpPasswordEncoder.getInstance();
}
}
Expand Down
Loading