Merge branch 'main' into next

This commit is contained in:
nocobase[bot] 2024-11-15 14:28:23 +00:00
commit 9a83a4e9b6

View File

@ -60,6 +60,9 @@ export class CacheManager {
redis: {
store: redisStore,
close: async (redis: RedisStore) => {
if (!redis.client?.isOpen) {
return;
}
await redis.client.quit();
},
},