I’m attempting to add connect_args
to create_async_engine
, the asynchronous version of the create_engine
. Specifically, I’m trying to append {"options": csearch_path={...}}
to the connect_args
to detail my schema.
In attempting this, I received the following error message:
TypeError: connect() got an unexpected keyword argument 'options'
This leads me to believe that adding connect_args
to create_async_engine
is possible, but that using options
as I had in create_engine
is certainly incorrect. Is there an alternative way to detail the options that I want to pass?