모델등록 수정
This commit is contained in:
@@ -123,7 +123,7 @@ public class UploadService {
|
||||
try {
|
||||
this.mergeChunks(tmpDataSetDir, fianlDir, fileName, chunkTotalIndex);
|
||||
|
||||
upAddReqDto.setStatus("MERGED");
|
||||
upAddReqDto.setStatus(FileUploadStatus.MERGED.name());
|
||||
uploadSessionCoreService.updateUploadSessionStatus(upAddReqDto);
|
||||
|
||||
log.info(
|
||||
@@ -135,7 +135,7 @@ public class UploadService {
|
||||
} catch (IOException e) {
|
||||
|
||||
// 실패 상태도 남기는 걸 강추
|
||||
upAddReqDto.setStatus("MERGE_FAIL");
|
||||
upAddReqDto.setStatus(FileUploadStatus.MERGE_FAIL.name());
|
||||
uploadSessionCoreService.updateUploadSessionStatus(upAddReqDto);
|
||||
|
||||
log.error(
|
||||
|
||||
Reference in New Issue
Block a user