From 8321420cf84e21c1cfc7df748774674862062400 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 Date: Wed, 6 Nov 2024 11:07:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E5=90=8E=E6=97=A0=E6=B3=95=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E7=9A=84=E5=BA=94=E7=94=A8=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/common/cache/file_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/cache/file_cache.py b/apps/common/cache/file_cache.py index 01f7ca13f46..45b5a73497e 100644 --- a/apps/common/cache/file_cache.py +++ b/apps/common/cache/file_cache.py @@ -79,7 +79,7 @@ def clear_by_application_id(self, application_id): value.application.id) == application_id): delete_keys.append(key) for key in delete_keys: - self.delete(key) + self.cache.delete(key) def clear_timeout_data(self): for key in self.cache.iterkeys():