Skip to content

Commit b6c4f72

Browse files
committed
Fix accidental debug slicing in IESG discusses - of note is that the
discusses page now supports more than just I-Ds - Legacy-Id: 6420
1 parent dcfe368 commit b6c4f72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/iesg/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def discusses(request):
392392
models.Q(states__type__in=("statchg", "conflrev"),
393393
states__slug__in=("iesgeval", "defer")),
394394
docevent__ballotpositiondocevent__pos__blocking=True)
395-
possible_docs = possible_docs.select_related("stream", "group", "ad").distinct()[:10]
395+
possible_docs = possible_docs.select_related("stream", "group", "ad").distinct()
396396

397397
docs = []
398398
for doc in possible_docs:

0 commit comments

Comments
 (0)