Igor T. Ghisi
Igor T. Ghisi
> How is the resulting image smaller? I tried building with and without your changes and they both ended up at 640MB... I'd guess that most of the size is...
Same issue here. Deployed on-premise using Docker. #matrix work just fine besides some users keeping getting disconnected (which is somewhat annoying since the "enter room" notification keeps popping up all...
Seems a very nice addition. If it's full backward compatible, it's a go for me.
We had the same issue using `data_regression` for SQLAlchemy models. Below is a recipe for a new fixture based on `data_regression` that would ignore some fields of the data given...
A more elegant way would be building your own serializer to convert objects to dicts without the unwanted fields. Pydantic [has something like that](https://pydantic-docs.helpmanual.io/usage/exporting_models/#advanced-include-and-exclude), but you have to specify the...
I wouldn't say it's a bug. Seems more an oversight from SQLAlchemy that this param had to be translated for `asyncpg` since SQLAlchemy parses the URL by itself and calls...
Just find out that there was a similar issue with `pg8000` DBAPI: https://github.com/sqlalchemy/sqlalchemy/issues/4146#issuecomment-441939790 Seems that SQLAlchemy folks expect DBAPIs to have the standard param names for `connect`. Is there any...
Oh... Now I got it. Seems a simple fix on the SQLAlchemy side. I opened an issue there: https://github.com/sqlalchemy/sqlalchemy/issues/6275
On asyncpg the query string is `ssl` instead of `sslmode`
This seems related to #3795