We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef6d35 commit 06b1470Copy full SHA for 06b1470
src/dependency_injector/providers.pxd
@@ -575,8 +575,10 @@ cdef inline object __call(
575
asyncio.ensure_future(args_kwargs_ready)
576
577
return future_result
578
-
579
- return call(*args, **kwargs)
+ try:
+ return call(*args, **kwargs)
580
+ except Exception as exception:
581
+ raise Exception(call) from exception
582
583
584
cdef inline void __async_call_callback(object future_result, object call, object future):
0 commit comments