Peter Baumgartner
Peter Baumgartner
Thanks @bpandola! I am still interested (I maintain this patch locally), but time has been hard to come by. I'll do my best.
The lack of complex types is somewhat intentional to keep the library simple and support importing anything as an environment variable. Is the goal just to convert yaml from toml?...
There is a comprehensive test suite, so you can see the places the tests are failing with pydantic 2 and use that as your guide. This is still supported and...
The prefix would need to be applied to every key in Redis. It's not clear to me that `queue_name` will be used for all these values? https://github.com/samuelcolvin/arq/blob/ab2dda2011ab27007650c4918d3704f3bf7ac13d/arq/constants.py#L1-L6
FWIW, I just got this email from Amazon: > We are reaching out to tell you about a new method in an OCI API that Amazon ECR supports that affects...
I think the list of tuples format should be the default. We can keep `dict` support as a legacy/deprecated option.
If I'm reading correctly, this would only be if you're making requests from a different domain or via something on the same domain that doesn't include the `referer` header, is...
Thanks for the additional insight! I'm happy to bite on the distraction 😆 ... What is your concern about converting CSVs to a list? I can see it being an...
This was a change in Django 2.0 and the library hasn't been updated to reflect that yet, https://github.com/django/django/blob/stable/2.0.x/django/core/cache/backends/memcached.py#L174-L177 Your change looks good, but we should do a major version bump...
Common practice is to "just use celery" because it is already there in many cases. http://docs.celeryproject.org/en/latest/userguide/periodic-tasks.html Management tasks + cron work as well. I'll work on adding some documentation around...