Stevan Meandzija

Results 3 issues of Stevan Meandzija

https://github.com/pgorecki/python-ddd/blob/79f9558a8d6a7e97e7f7b3fdb084517fd43ee6b1/src/modules/bidding/application/query/get_bidding_details.py#L24 how did you ensure how many connections to the database can be made? I don't see some connection pool used, or it is injected through container?Thank you.

``` from typing import Any, List from fastapi import APIRouter, Depends, HTTPException from sqlalchemy.orm import Session from app import crud, models, schemas from app.api import deps router = APIRouter() @router.post("/",...

Sessions are created but not released. Does anyone have same problem? Thank you.