Evin Dunn

Results 4 comments of Evin Dunn

This helped me out, thanks all. Here's what mine looks like: ```python async def database_session(): """ Returns a database Session for use with fastapi Depends() """ session = async_scoped_session(_db_session, scopefunc=current_task)...

Here's how I finally got it to work (https://github.com/sqlalchemy/sqlalchemy/discussions/5975): ```python from ssl import create_default_context, Purpose as SSLPurpose ssl_context = create_default_context( SSLPurpose.CLIENT_AUTH, cafile="docker-compose.d/cockroach-certs/ca.crt" ) ssl_context.load_cert_chain( "docker-compose.d/cockroach-certs/client.root.crt", keyfile="docker-compose.d/cockroach-certs/client.root.key" ) ssl_context.check_hostname = True...

I was facing the same issue, but can get it to compile using: ```typescript import { Express, Request } from 'express'; // This is a hack to make Multer available...

Worked for me from the most recently tagged release: https://github.com/FormerLurker/Octolapse/archive/refs/tags/v0.4.5.zip