feat: add a abstract layer for WorkflowNodeExcetion (#18026)

This commit is contained in:
-LAN- 2025-04-17 12:48:52 +09:00 committed by GitHub
commit 6d9dd3109e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 807 additions and 251 deletions

View file

@ -12,7 +12,7 @@ from pydantic import (
)
from pydantic_settings import BaseSettings
from configs.feature.hosted_service import HostedServiceConfig
from .hosted_service import HostedServiceConfig
class SecurityConfig(BaseSettings):
@ -519,6 +519,11 @@ class WorkflowNodeExecutionConfig(BaseSettings):
default=100,
)
WORKFLOW_NODE_EXECUTION_STORAGE: str = Field(
default="rdbms",
description="Storage backend for WorkflowNodeExecution. Options: 'rdbms', 'hybrid'",
)
class AuthConfig(BaseSettings):
"""