Skip to content

Commit

Permalink
chore(api/config): Extend default variable size limit to 200 KB
Browse files Browse the repository at this point in the history
  • Loading branch information
laipz8200 committed Sep 27, 2024
1 parent e2733bd commit 4771b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/configs/feature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ class WorkflowConfig(BaseSettings):
)

MAX_VARIABLE_SIZE: PositiveInt = Field(
description="Maximum size in bytes for a single variable in workflows. Default to 5KB.",
default=5 * 1024,
description="Maximum size in bytes for a single variable in workflows. Default to 200 KB.",
default=200 * 1024,
)


Expand Down

0 comments on commit 4771b69

Please sign in to comment.