fix(1.5.0-beta1): 修复retry日志出现retryId为空异常

This commit is contained in:
srzou 2025-04-23 09:54:18 +08:00 committed by opensnail
parent edca09ea7c
commit 253abfbb2b

View File

@ -172,9 +172,6 @@ public class RetryServiceImpl implements RetryService {
} }
if (RetryStatusEnum.FINISH.getStatus().equals(retryStatusEnum.getStatus())) { if (RetryStatusEnum.FINISH.getStatus().equals(retryStatusEnum.getStatus())) {
RetryLogMetaDTO retryLogMetaDTO = RetryTaskConverter.INSTANCE.toLogMetaDTO(retry);
retryLogMetaDTO.setTimestamp(DateUtils.toNowMilli());
SnailJobLog.REMOTE.info("============Manual operation completed============. <|>{}<|>", retryLogMetaDTO);
retry.setDeleted(retry.getId()); retry.setDeleted(retry.getId());
} }