Skip to content

Commit c95eb27

Browse files
authored
Merge pull request #1 from SpringRole/fixed_async_utils
fixed_async_utils
2 parents bf73dc4 + b56d889 commit c95eb27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_index/async_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async def _tqdm_gather() -> List[Any]:
4444
pass
4545

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

4949
outputs: List[Any] = asyncio.run(_gather())
5050
return outputs

0 commit comments

Comments
 (0)