Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audit: Adjust timeout #342

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading