diff options
-rwxr-xr-x | updateGit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/updateGit.py b/updateGit.py index 4adf28c..2999323 100755 --- a/updateGit.py +++ b/updateGit.py @@ -178,7 +178,8 @@ def main(): return print('Updating', len(repos), 'repositories.') - executor = ThreadPoolExecutor(max_workers=len(repos)) + # executor = ThreadPoolExecutor(max_workers=len(repos)) + executor = ThreadPoolExecutor(max_workers=8) for repo in repos: # updatePath(subdir) executor.submit(updatePath, repo) |