George Sakkis
George Sakkis
@tomMoral thanks for the review! I noticed in some places you rename path to cache_id and others to call_id; is this intentional?
Better late than never, many thanks @tomMoral!
Should the overall timeout include the pool timeout? If yes the implementation is easy, at least for the async client; just wrap `AsyncClient.request` in `asyncio.wait_for()`. However at least in my...
@falkoschindler you don't need `asyncio.wait_for` for this url, the httpx timeout (or read timeout) is sufficient. An example where it's not sufficient is the one in the original post, where...
@dleifeld in addition to the two options @hramezani mentioned, a third option that allows keeping everything in a single `.env` file without compromising validation with `extra='ignore'` is to add a...
Any update on this? Not sure if it's the same bug but I set the timeout to 1 sec and it keeps trying to reach the (inexistent) endpoint: ``` WARNING...
Not sure if it's the same issue/cause but mypy also complains about the return value with `validate_return=True`: ```py from pydantic import validate_call @validate_call(validate_return=True) def f(v: str) -> int: return v...
Just noticed that in my original code I get different traceback from the MCVE above: ``` File "mypy/main.py", line 95, in main File "mypy/main.py", line 174, in run_build File "mypy/build.py",...
@art049 @michallowasrzechonek-silvair @adeelsohailahmed I submitted a [new PR](https://github.com/art049/odmantic/pull/344) for this. It works for me, please let me know if you find any issues with it.
It's not just Flask, I can't get any ASGI framework auto instrumentation to work; I tried FastAPI, Starlette, plain ASGI. FastAPI example: ```py # app.py from fastapi import FastAPI app...