Skip to content

Commit

Permalink
feat(agents-api): Increase timeout to 60s for executing integration a…
Browse files Browse the repository at this point in the history
…ctivity
  • Loading branch information
HamadaSalhab committed Oct 21, 2024
1 parent 8166607 commit f62a392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents-api/agents_api/clients/integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async def run_integration_service(

setup = setup or None

async with AsyncClient() as client:
async with AsyncClient(timeout=60) as client:
response = await client.post(
url,
json={"arguments": arguments, "setup": setup},
Expand Down

0 comments on commit f62a392

Please sign in to comment.