feat: 3.2.0
1. 修复重试实时日志查询问题
This commit is contained in:
parent
647d462ed8
commit
fe2d8e1bc9
@ -91,6 +91,12 @@ public class RetryTaskLogServiceImpl implements RetryTaskLogService {
|
||||
@Override
|
||||
public RetryTaskLogMessageResponseVO getRetryTaskLogMessagePage(
|
||||
RetryTaskLogMessageQueryVO queryVO) {
|
||||
if (StrUtil.isBlank(queryVO.getUniqueId()) || StrUtil.isBlank(queryVO.getGroupName())) {
|
||||
RetryTaskLogMessageResponseVO jobLogResponseVO = new RetryTaskLogMessageResponseVO();
|
||||
jobLogResponseVO.setNextStartId(0L);
|
||||
jobLogResponseVO.setFromIndex(0);
|
||||
return jobLogResponseVO;
|
||||
}
|
||||
|
||||
String namespaceId = UserSessionUtils.currentUserSession().getNamespaceId();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user