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 @@ -39,8 +39,6 @@ public class AiInternalController {
private final AESCipher aesCipher;
private final ObjectMapper objectMapper;

private final ClosetRepository closetRepository;

@PostMapping("/aes-prediction")
public ResponseEntity<Map<String, String>> sendAllUsersPredictionDataSecure() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class ModelScheduler {
* 매일 새벽 5시에 모델 서버로 예측에 필요한 데이터를 암호화된 형태로 전송합니다.
*/
@Transactional
@Scheduled(cron = "0 0 5 * * *")
@Scheduled(cron = "0 10 16 * * *")
public void pushPredictionAESDataToAiServer() {
try {
List<Member> members = memberRepository.findAllByIsDeletedFalse();
Expand Down
Loading