cx_Oracle_async icon indicating copy to clipboard operation
cx_Oracle_async copied to clipboard

callproc keyword_parameters needs functools.partial

Open Jaza opened this issue 3 years ago • 0 comments

To prevent this error:

File /path/to/cx_Oracle_async/cursors.py:45, in AsyncCursorWrapper.callproc(self, *args, **kwargs)
     44 async def callproc(self, *args , **kwargs):
---> 45     return await self._loop.run_in_executor(self._thread_pool , self._cursor.callproc, *args , **kwargs)

TypeError: BaseEventLoop.run_in_executor() got an unexpected keyword argument 'keyword_parameters'

Jaza avatar Sep 23 '22 13:09 Jaza