chore: Set plugin schema cache TTL to 1h (#31708)

This commit is contained in:
-LAN-
2026-01-29 16:41:09 +08:00
committed by GitHub
parent b9ac7af9c5
commit 2626e773d9
4 changed files with 4 additions and 2 deletions

View File

@ -245,7 +245,7 @@ class PluginConfig(BaseSettings):
PLUGIN_MODEL_SCHEMA_CACHE_TTL: PositiveInt = Field(
description="TTL in seconds for caching plugin model schemas in Redis",
default=24 * 60 * 60,
default=60 * 60,
)