Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mederka committed Oct 16, 2024
1 parent 2804313 commit e643f9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions projects/fal/src/fal/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
f"pydantic=={pydantic_version}",
"uvicorn",
"starlette_exporter",
"structlog",
]


Expand Down
2 changes: 1 addition & 1 deletion projects/fal/src/fal/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def open_isolate_channel(address: str) -> async_grpc.Channel:

channel_status = channel.channel_ready()
try:
await asyncio.wait_for(channel_status, timeout=60)
await asyncio.wait_for(channel_status, timeout=1)
except asyncio.TimeoutError:
await _stack.aclose()
raise Exception("Timed out trying to connect to local isolate")
Expand Down

0 comments on commit e643f9c

Please sign in to comment.