Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion fastloom/tenant/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
JWTAuth,
OptionalJWTAuth,
)
from fastloom.cache.base import BaseCache, BaseTenantSettingCache
from fastloom.cache.base import (
BaseCache,
BaseTenantSettingCache,
HostTenantMapping,
)
from fastloom.cache.lifehooks import RedisHandler
from fastloom.db.signals import BaseDocumentSignal

Expand Down Expand Up @@ -114,6 +118,7 @@ def _setup_redis(self):
redis = handler.redis
BaseCache.Meta.database = redis
BaseTenantSettingCache.Meta.database = redis
HostTenantMapping.Meta.database = redis
self.tenant_schema.cache.Meta.database = redis

if isinstance(self.general, MonitoringSettings):
Expand Down
2 changes: 1 addition & 1 deletion plugins/fastloom-sdk/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fastloom-sdk",
"description": "Skills for services that consume the fastloom library \u2014 scaffold new services, add routes and RabbitMQ subscribers, audit settings.",
"version": "0.4.40",
"version": "0.4.41",
"author": {
"name": "aradng"
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fastloom"
version = "0.4.40"
version = "0.4.41"
description = "Core package"
authors = []
readme = "README.md"
Expand Down
Loading