Skip to content

Commit 5285745

Browse files
committed
fix: 修复应用发布后无法使用最新的应用设置
1 parent e6066eb commit 5285745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/common/cache/file_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def clear_by_application_id(self, application_id):
7979
value.application.id) == application_id):
8080
delete_keys.append(key)
8181
for key in delete_keys:
82-
self.delete(key)
82+
self.cache.delete(key)
8383

8484
def clear_timeout_data(self):
8585
for key in self.cache.iterkeys():

0 commit comments

Comments
 (0)