Lev Gorodetskii
Lev Gorodetskii
Python 3.11.0b4 is out. Should we revisit this one? Citing [release notes](https://www.python.org/downloads/release/python-3110b4/) here: _Our goal is have no ABI changes after beta 4 and as few code changes as possible...
Oh shit, sorry for that. Shall prepare in a day or two ðŸ«
Yeah, many amazing things can be done with YAML, especially with custom parsers and loaders. However, I suggest enforcing a single casing for all options in config and UI. I'm...
Sure. Took me five months :D
I love the idea of having a connection checker bot. But IMO it's an overkill, at this stage of development. In most cases, Soulseek connectivity issues are about broken UPnP,...
I suggest to add a warning modal window to the "restart" and "shutdown" buttons as a temporary solution. Something like: `You have unfinished downloads. They won't be resumed after the...
@long2ice, thanks, I should have notice there's no BEGIN/COMMIT instructions in logs at all. But is there any way to enforce using current transaction for all model calls inside the...
Also explicit `using_db` didn't help, fails with probability around 50%: `test.py` ```python import asyncio import logging from test_models import TestModel from tortoise import Tortoise from tortoise.transactions import in_transaction logging.basicConfig() logging.getLogger().setLevel(0)...
@PythonCoderAS, there's a race condition somewhere in the code which handles Postgres connection pool. You can add `maxsize=1' to your connection string to limit asyncpg to a single connection and...
Still reproducible on `0.19.1`, both with and without `in_transaction`.