feat: 3.2.0
1. 修复重试实时日志查询问题
This commit is contained in:
parent
6c31df699e
commit
0d39c138c9
@ -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