otsuka

Results 9 comments of otsuka

I used the starlette TestClient with nest_asyncio as a workaround for this problem, but I changed to use async-asgi-testclient. It works very well so far.

Hi, @elprans `WITH RECURSIVE typeinfo_tree(... ` I would like to know the purpose for which the query is being issued, could you tell me? I've been having trouble with this...

Thank you very much for your answer, @elprans

@elprans Is there a plan to solve this problem? Also, other than pgpool-II, if you know of a high availability and automatic failover product that can be combined with asyncpg,...

Hmmm... pgbouncer is not an HA product, it's just a connection pooler.

The following is the log of pgpool when it runs `await conn.execute('SELECT 1 WHERE 2 > $1', 1)` in my environment. Doesn't it include tips on how to solve the...

@mh-northlander Can you tell me when you plan to release it as v3.3.1?

Thank you, @lntuition Unfortunately using `db_url` argument didn't work. It raised `OSError: Multiple exceptions: [Errno 61] Connect call failed ('::1', 5432, 0, 0), [Errno 61] Connect call failed ('127.0.0.1', 5432)`...

I found that I can connect by giving `port` key to the `credentials` dict. Any number is ok for its value. ```py await Tortoise.init( config={ 'connections': { 'default': { "engine":...