owner:olau@iola.dk resolution_fixed type_defect | by henrik@levkowetz.com
Expiration warning reminders are sent for dead documents ... and shouldn't.
It seems the following code in ietf/idrfc/expire.py could just check for
..., states__slug="watching" instead of ..., states__order__gte=42.
def expirable_documents():
d = Document.objects.filter(states__type="draft", states__slug="active").exclude(tags="rfc-rev")
# we need to get those that either don't have a state or have a
# state >= 42 (AD watching), unfortunately that doesn't appear to
# be possible to get to work directly in Django 1.1
return itertools.chain(d.exclude(states__type="draft-iesg").distinct(), d.filter(states__type="draft-iesg", states__order__gte=42).distinct())
Issue migrated from trac:787 at 2022-03-04 02:00:09 +0000
owner:olau@iola.dkresolution_fixedtype_defect| by henrik@levkowetz.comExpiration warning reminders are sent for dead documents ... and shouldn't.
It seems the following code in ietf/idrfc/expire.py could just check for
...
, states__slug="watching"instead of ..., states__order__gte=42.Issue migrated from trac:787 at 2022-03-04 02:00:09 +0000