Skip to content

Commit

Permalink
increase history limit to 20 (via #1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmartin0 authored Feb 19, 2020
1 parent 8eaf694 commit e56f156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private void updateHistory(final Map<String, HistoryData> history,
}

final List<HistoryItem> newItems = Stream.concat(Stream.of(newItem), data.getItems().stream())
.limit(5)
.limit(20)
.collect(Collectors.toList());
result.setNewFailed(isNewFailed(newItems));
result.setFlaky(isFlaky(newItems));
Expand Down

0 comments on commit e56f156

Please sign in to comment.