jeffry
jeffry
Facing the same issue in 0.85.0, Depends(get_session) not close normally. In pgadmin shows that connections with IDLE state. I did a test on async_session or sync_session, it turns out both...
> Facing the same issue in 0.85.0, Depends(get_session) not close normally. In pgadmin shows that connections with IDLE state. I did a test on async_session or sync_session, it turns out...
> > Facing the same issue in 0.85.0, Depends(get_session) not close normally. In pgadmin shows that connections with IDLE state. I did a test on async_session or sync_session, it turns...
hope this feature coming soon
redoc if good for API user to get start, but without testing api directly in swagger UI. stoplight elements just get both features. Hope this will be integrated to fastapi...
see example below: ```python3 import asyncio import aio_pika import ssl async def main() -> None: context = ssl.create_default_context(cafile=f"{PROJECT_DIR}/certs/ca_certificate.pem") context.check_hostname = False context.verify_mode = ssl.CERT_REQUIRED context.load_cert_chain( certfile=f"{PROJECT_DIR}/certs/client_certificate.pem", keyfile=f"{PROJECT_DIR}/certs/client_key.pem", ) connection =...
seems it's a sqlalchemy issues. `nullable` is missing in column_property https://github.com/sqlalchemy/sqlalchemy/issues/10351
may I ask any updates for this issue?
It would be a very nice feature to support translation layer for TCP/UDP, which will help measure network performance, especially for forwording devices(use linux as a gateway, running routing, NAT,...
seems `main` was broken for mypy. ``` tests/test_recursive_models.py:56: error: Non-overlapping identity check (left operand type: "PydanticNode", right operand type: "type[_Sentinel]") [comparison-overlap] ```