Skip to content

Commit

Permalink
feature: 原子操作能力支持滚动执行 TencentBlueKing#446
Browse files Browse the repository at this point in the history
修复查询滚动详情-全部批次下的执行记录返回不正确的问题
  • Loading branch information
wangyu096 committed Jul 12, 2022
1 parent 5abc5c9 commit 23e7b69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ public List<StepExecutionRecordDTO> listStepExecutionHistory(String username,
}

List<StepExecutionRecordDTO> records;
if (batch == null) {
if (batch == null || batch == 0) {
// 获取步骤维度的重试记录
records = queryStepRetryRecords(stepInstance);
} else {
Expand Down

0 comments on commit 23e7b69

Please sign in to comment.