Daniel
Daniel
Hum.. .I tried linking the PR to the existing issue (encode/starlette#608) by editing the commit message according to what is documented in https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue, but it's not working. The button for...
@tomchristie could you approve the workflow to start? Branch could be merged into master if the pipeline is successful. Thank you.
PR: https://github.com/encode/starlette/pull/611
Rebased on top of current master.
> Hello, to install soundnode on debian stretch you have to change repository name by replacing stretch by jessy in /etc/apt/sources.list.d/JonasGroeger_soundnode.list Doesn't help - there is no `Release` file.
Thanks. Your solution works for me. I am using now: ```python @classmethod def db(cls): if not cls._meta.database: cls._meta.database = get_redis_connection(url=db_url) return super().db() ``` Update: It does *not* work. It just...
@svabra That is not what's happening. The connection _is_ opened lazily. It's just _not configured_ lazily: ``` $ docker stop redis-stack $ python >>> from myapp import RedisUser >>> #...
I added a PR that implements lazy DB connection configuration: When `MyRedisModel.Meta.database` is a _function object_, it is executed and its return value is returned. ```Python def my_connection(): return Redis(**get_db_config())...
Hi, I'm writing a Python daemon in Linux that synchronizes selected users and their groups from a local LDAP directory to AAD as a way of provisioning them for Office...