feat: Change default event delivery method to polling (#6811)
Change default event delivery method to polling
This commit is contained in:
parent
b5743ff980
commit
73551b0d32
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ class Settings(BaseSettings):
|
|||
mcp_server_enable_progress_notifications: bool = False
|
||||
"""If set to False, Langflow will not send progress notifications in the MCP server."""
|
||||
|
||||
event_delivery: Literal["polling", "streaming"] = "streaming"
|
||||
event_delivery: Literal["polling", "streaming"] = "polling"
|
||||
"""How to deliver build events to the frontend. Can be 'polling' or 'streaming'."""
|
||||
|
||||
@field_validator("dev")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue