From 7572ab3b6d0e2b3496d2967f6e85dccedaf4620a Mon Sep 17 00:00:00 2001 From: Emmanuel Viennet Date: Wed, 22 Feb 2023 18:14:33 +0100 Subject: [PATCH] Fix #607: invalidation cache tables --- app/scodoc/sco_cache.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/scodoc/sco_cache.py b/app/scodoc/sco_cache.py index 23b18a6d..0b9d27a8 100644 --- a/app/scodoc/sco_cache.py +++ b/app/scodoc/sco_cache.py @@ -309,6 +309,8 @@ def invalidate_formsemestre( # was inval_cache(formsemestre_id=None, pdfonly=Fa ValidationsSemestreCache.delete_many(formsemestre_ids) TableRecapCache.delete_many(formsemestre_ids) TableRecapWithEvalsCache.delete_many(formsemestre_ids) + TableJuryCache.delete_many(formsemestre_ids) + TableJuryWithEvalsCache.delete_many(formsemestre_ids) SemBulletinsPDFCache.invalidate_sems(formsemestre_ids)