Skip to content

Commit

Permalink
Merge pull request #1 from SpringRole/fixed_async_utils
Browse files Browse the repository at this point in the history
fixed_async_utils
  • Loading branch information
siddhant01 authored Aug 7, 2024
2 parents bf73dc4 + b56d889 commit c95eb27
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 c95eb27

Please sign in to comment.