Skip to content

Commit 6c0751e

Browse files
authored
chore: give a default value (256) to source_max_inflight_rows (#849)
1 parent b168a7d commit 6c0751e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cocoindex/setting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class GlobalExecutionOptions:
5151
"""Global execution options."""
5252

5353
# The maximum number of concurrent inflight requests, shared among all sources from all flows.
54-
source_max_inflight_rows: int | None = None
54+
source_max_inflight_rows: int | None = 256
5555
source_max_inflight_bytes: int | None = None
5656

5757

0 commit comments

Comments
 (0)