Kamran Siddiqi
Kamran Siddiqi
Support for Redis Sentinel configuration as follows: `app.conf.broker_url = 'sentinel://:password@localhost:26379;sentinel://:password@localhost:26380;sentinel://:password@localhost:26381' app.conf.broker_transport_options = { 'master_name': "cluster1", sentinel_kwargs': {'password': 'password'} }` #34
If my celery broker_url is configured for Redis Sentinel ([per celery documentation)](https://docs.celeryproject.org/en/stable/getting-started/brokers/redis.html): ``` app.conf.broker_url = 'sentinel://:password@localhost:26379;sentinel://:password@localhost:26380;sentinel://:password@localhost:26381' app.conf.broker_transport_options = { 'master_name': "cluster1", sentinel_kwargs': {'password': 'password'} } ``` I get the following...
Current config does not appear to allow me to define `SENTINEL_KWARGS` where I can specify a sentinel password for sentinel authentication. This appears to be a limitation with the current...
pytz 2022.2 was just released and it seems to have more timezones that aren't supported: ``` File ".../lib/python3.10/site-packages/timezone_field/fields.py", line 41, in default_zoneinfo_tzs = [ZoneInfo(tz) for tz in pytz.common_timezones] File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/zoneinfo/_common.py",...
Do not sort if `TypeError` is raised and gracefully proceed.
The sort https://github.com/jpadilla/django-rest-framework-yaml/blob/2e0e219e489984f82c0bad458e0b7174aec110c9/rest_framework_yaml/encoders.py#L42 results in the following exception if the dictionary contains a string and null type (which is still valid yaml) ``` Traceback (most recent call last): File ".../venv/lib/python3.10/site-packages/django/core/handlers/exception.py",...