Skip to content

Commit

Permalink
Merge pull request #342 from camptocamp/fix
Browse files Browse the repository at this point in the history
Audit: Adjust timeout
  • Loading branch information
sbrunner authored Jun 8, 2024
2 parents 3fcd9c1 + 97da353 commit ddb99e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github_app_geo_project/module/audit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def snyk(
continue
directory = os.path.dirname(os.path.abspath(file))

async with asyncio.timeout(300):
async with asyncio.timeout(600):
try:
command = [
"pipenv",
Expand Down Expand Up @@ -174,7 +174,7 @@ async def snyk(
continue
if file in local_config.get("files-no-install", config.get("files-no-install", [])):
continue
async with asyncio.timeout(1200):
async with asyncio.timeout(600):
try:
command = ["poetry", "install"]
async_proc = await asyncio.create_subprocess_exec(
Expand Down

0 comments on commit ddb99e1

Please sign in to comment.