운영환경일때 ai팀경로수정

This commit is contained in:
2026-02-26 08:33:53 +09:00
parent 48b46035fd
commit 8ac0a00311
3 changed files with 40 additions and 15 deletions

View File

@@ -551,6 +551,14 @@ public class InferenceResultService {
sendDto.setCls_model_version(modelInfo.getModelVer());
sendDto.setCd_model_type(modelType);
sendDto.setPriority(5d);
//운영환경일때 경로수정 dean 260226
if (profile != null && profile.equals("prod")) {
log.info("profile = {} change inforence req", profile);
sendDto.changeValForProd();
}
log.info("[Inference Send]SendDto={}", sendDto);
return sendDto;
}