File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -989,9 +989,9 @@ export class FolderRepositoryManager extends Disposable {
989989
990990 // Process branches in chunks to avoid overwhelming the system
991991 // Using a smaller chunk size (10) compared to getLocalPullRequests (100) because:
992- // - This operation makes GitHub API calls for each branch that doesn't have metadata
993- // - getLocalPullRequests only reads local config, which is much faster
994- // - We want to be conservative on first activation to avoid rate limiting
992+ // - This runs on first activation when we don't know how many branches need API calls
993+ // - We want to be conservative to avoid rate limiting
994+ // - The operation is async and non-blocking, so lower throughput is acceptable
995995 const chunkSize = 10 ;
996996 const associationResults : boolean [ ] = [ ] ;
997997
You can’t perform that action at this time.
0 commit comments