Adrien Pensart

Results 4 comments of Adrien Pensart

I have the same kind of issue, not sure if this is related to the / at the end thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: InvalidUriParts(InvalidUri(SchemeMissing))',...

Bulk upserts have always been very complex, even in postgres... is the new MERGE on postges 15 could help on this (in a near or far future) ? when I...

I can confirm that after restarting instance (1.4+5ffe34b), python-edgedb does not reconnect automatically (edgedb.errors.ClientConnectionClosedError) I used this option : ``` client: AsyncIOClient = create_async_client(dsn=dsn) client = client.with_retry_options( RetryOptions(attempts=10) ) ```...

It is maybe naive, but for unknown reason, inheriting from a class is fixing this behavior : ```python #!/usr/bin/env python3 from functools import cached_property from attr import define class Works:...