Skip to content

Commit

Permalink
Increased concurrently limit to -> 8
Browse files Browse the repository at this point in the history
  • Loading branch information
code-rgb authored Aug 18, 2021
1 parent 096bac7 commit 9d29fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xapps2/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async def main():

tasks: List = []

sem = asyncio.Semaphore(6)
sem = asyncio.Semaphore(8)

for addon in apps_conf["addons"]:
if func := getattr(apk_dl, addon, None):
Expand Down

0 comments on commit 9d29fcf

Please sign in to comment.