mirror of
https://github.com/langgenius/dify.git
synced 2026-07-27 15:08:35 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: GareArc <garethcxy@dify.ai>
27 lines
961 B
Python
27 lines
961 B
Python
from enum import StrEnum
|
|
|
|
from configs import dify_config
|
|
from enums.deployment_edition import DeploymentEdition
|
|
from services.workflow.entities import WorkflowScheduleCFSPlanEntity
|
|
|
|
# Determine queue names based on edition
|
|
if dify_config.DEPLOYMENT_EDITION == DeploymentEdition.CLOUD:
|
|
# Cloud edition: separate queues for different tiers
|
|
_professional_queue = "workflow_professional"
|
|
_team_queue = "workflow_team"
|
|
_sandbox_queue = "workflow_sandbox"
|
|
AsyncWorkflowSystemStrategy = WorkflowScheduleCFSPlanEntity.Strategy.TimeSlice
|
|
else:
|
|
# Community edition: single workflow queue (not dataset)
|
|
_professional_queue = "workflow"
|
|
_team_queue = "workflow"
|
|
_sandbox_queue = "workflow"
|
|
AsyncWorkflowSystemStrategy = WorkflowScheduleCFSPlanEntity.Strategy.Nop
|
|
|
|
|
|
class AsyncWorkflowQueue(StrEnum):
|
|
# Define constants
|
|
PROFESSIONAL_QUEUE = _professional_queue
|
|
TEAM_QUEUE = _team_queue
|
|
SANDBOX_QUEUE = _sandbox_queue
|