Skip to content

Commit

Permalink
fix homepage task instance count method JUNIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianqi-Dotes committed Apr 19, 2022
1 parent 23a9854 commit 045d19c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,6 @@ public List<ExecuteStatusCount> countTaskInstanceAllStatesByProjectCodes(Date st
.countTaskInstanceStateByProjectCodesAndStatesBySubmitTime(startTime, endTime, projectCodes, needRecountState);
startTimeStates.orElseGet(ArrayList::new).addAll(recounts);

return startTimeStates.get();
return startTimeStates.orElse(null);
}
}

0 comments on commit 045d19c

Please sign in to comment.