Skip to content

Commit a13be8a

Browse files
feat: increase DEFAULT_MAX_QUEUE_SIZE from 10,000 to 50,000
Co-Authored-By: unknown <>
1 parent fd21b86 commit a13be8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airbyte_cdk/sources/concurrent_source/thread_pool_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ThreadPoolManager:
1212
Wrapper to abstract away the threadpool and the logic to wait for pending tasks to be completed.
1313
"""
1414

15-
DEFAULT_MAX_QUEUE_SIZE = 10_000
15+
DEFAULT_MAX_QUEUE_SIZE = 50_000
1616

1717
def __init__(
1818
self,

0 commit comments

Comments
 (0)