Skip to content

Commit 9c436e6

Browse files
committed
chore: increase pooled projects per token to four
1 parent 631b148 commit 9c436e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/token_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, db: Database, flow_client: FlowClient):
1717
self.flow_client = flow_client
1818
self._lock = asyncio.Lock()
1919
self._project_lock = asyncio.Lock()
20-
self._project_pool_size = 2
20+
self._project_pool_size = 4
2121

2222
def _sort_projects(self, projects: List[Project]) -> List[Project]:
2323
"""Sort projects in a stable order for round-robin selection."""

0 commit comments

Comments
 (0)