don't fail if week does not exist yet

This commit is contained in:
j 2023-12-10 10:08:31 +00:00
parent 1f9676fdab
commit 2d91dfcacb
1 changed files with 5 additions and 4 deletions

View File

@ -24,10 +24,11 @@ def send_week():
week, archive = models.Item.public(now)
week_obj = models.Week.objects.filter(monday=monday).first()
notified_key = "week-%s-notified" % monday
if not week_obj and not cache.get(notified_key):
message = "no title for week, can not send out email please add: %s/admin/item/week/add/?monday=%s" % (settings.URL, monday)
r = rpc.send(message, group=settings.SIGNAL_MODERATORS_GROUP)
cache.set(notified_key, True, 24*60*60)
if not week_obj:
if not cache.get(notified_key):
message = "no title for week, can not send out email please add: %s/admin/item/week/add/?monday=%s" % (settings.URL, monday)
r = rpc.send(message, group=settings.SIGNAL_MODERATORS_GROUP)
cache.set(notified_key, True, 24*60*60)
elif week.filter(announced=None).exists():
logger.error("waiting for last item of the week to be public")
elif not week_obj.published: