Skip to content

Commit

Permalink
fixed_async_uitls
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant01 committed Aug 7, 2024
1 parent bf73dc4 commit b56d889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama_index/async_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def _tqdm_gather() -> List[Any]:
pass

async def _gather() -> List[Any]:
return await asyncio.gather(*tasks_to_execute)
return await asyncio.gather(*tasks_to_execute, return_exceptions=True)

outputs: List[Any] = asyncio.run(_gather())
return outputs
Expand Down

0 comments on commit b56d889

Please sign in to comment.