We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9adb76 commit ec00d3cCopy full SHA for ec00d3c
1 file changed
pgcommitfest/commitfest/views.py
@@ -1567,11 +1567,7 @@ def thread_notify(request):
1567
return HttpResponseForbidden(b"Invalid API key")
1568
1569
for m in j["messageids"]:
1570
- try:
1571
- t = MailThread.objects.get(messageid=m)
1572
- refresh_single_thread(t)
1573
- except Exception:
1574
- # Just ignore it, we'll check again later
1575
- pass
+ t = MailThread.objects.get(messageid=m)
+ refresh_single_thread(t)
1576
1577
return HttpResponse(status=200)
0 commit comments