feat: Change default event delivery method to polling (#6811)

Change default event delivery method to polling
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-02-25 12:17:31 -03:00 committed by GitHub
commit 73551b0d32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")