fix(sj_1.4.0-beta1):

1、修复重试重复告警
This commit is contained in:
zhengweilin 2025-02-27 09:40:46 +08:00 committed by opensnail
parent fdc2f251df
commit 53c5528a0f

View File

@ -76,7 +76,7 @@ public abstract class AbstractRetryTaskAlarmSchedule extends AbstractSchedule im
new LambdaQueryWrapper<RetrySceneConfig>()
.gt(RetrySceneConfig::getId, startId)
.eq(RetrySceneConfig::getSceneStatus, StatusEnum.YES.getStatus())
.orderByDesc(RetrySceneConfig::getId)
.orderByAsc(RetrySceneConfig::getId)
).getRecords();
return RetryTaskConverter.INSTANCE.toRetrySceneConfigPartitionTask(retrySceneConfigList);
}