Skip to content

Commit 30ac85d

Browse files
committed
fix
1 parent 0910ec9 commit 30ac85d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synchronicity/synchronizer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def _run_function_sync_future(self, coro, interface, original_func):
315315
loop = self._get_loop(start=True)
316316
# For futures, we unwrap the result at this point, not in f_wrapped
317317
coro = unwrap_coro_exception(coro)
318-
coro = self._translate_coro_out(coro, interface)
318+
coro = self._translate_coro_out(coro, interface, original_func)
319319
return asyncio.run_coroutine_threadsafe(coro, loop)
320320

321321
async def _run_function_async(self, coro, interface, original_func):

0 commit comments

Comments
 (0)