Fix for issues where callbacks are not batched (#10235)

This commit is contained in:
Tim O'Farrell
2025-08-11 15:44:48 -06:00
committed by GitHub
parent af49b615b1
commit 6f21b6700a
7 changed files with 34 additions and 24 deletions

View File

@@ -260,10 +260,11 @@ def _load_runtime(
config.mcp = override_mcp_config
file_store = file_store = get_file_store(
config.file_store,
config.file_store_path,
config.file_store_web_hook_url,
config.file_store_web_hook_headers,
file_store_type=config.file_store,
file_store_path=config.file_store_path,
file_store_web_hook_url=config.file_store_web_hook_url,
file_store_web_hook_headers=config.file_store_web_hook_headers,
file_store_web_hook_batch=config.file_store_web_hook_batch,
)
event_stream = EventStream(sid, file_store)