Skip to content

Commit

Permalink
Lowered parrel job amount
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis_45 authored Dec 12, 2022
1 parent bd43ba4 commit 43e996a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_package_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def checkGame(game):
with tqdm_joblib(
tqdm(desc='Requesting app statuses', total=len(apps),
mininterval=10)) as progress_bar:
results = Parallel(n_jobs=50)(delayed(checkGame)(i) for i in apps)
results = Parallel(n_jobs=20)(delayed(checkGame)(i) for i in apps)

output = ''
for game in results:
Expand Down

0 comments on commit 43e996a

Please sign in to comment.