mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 20:43:55 +08:00
12 lines
404 B
Python
12 lines
404 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class LogStoreConfig(BaseSettings):
|
|
"""Migration controls for repositories backed by Aliyun LogStore."""
|
|
|
|
LOGSTORE_DUAL_WRITE_ENABLED: bool = False
|
|
|
|
# Keep workflow graphs in LogStore by default. Deployments may disable this
|
|
# while migrating large graph payloads to another persistence owner.
|
|
LOGSTORE_ENABLE_PUT_GRAPH_FIELD: bool = True
|