PM Extra

Results 113 comments of PM Extra

At least, django-health-check should provides another way to set the redis password in any character.

@codingjoe What do you think?

You can give it a try. If you encounter any problems, welcome feedback and I will try my best to help you. At least it works well with 23.7.2 which...

I'll upgrade to the latest Sentry to test and fix it when I have some free time, but that might take a few weeks. If you're in a hurry, consider...

@Alena86 Please provide your settings from sentry.conf.py

@Alena86 ``` LOGGING['loggers']['fhango_auth_ldap'] ^^ It should be django? ``` Please configure the logging correctly first. Then maybe we can get some information from the log.

So are you sure your username field is `uid`? For Microsoft AD it should be `sAMAccountName`.

> In order to test out changes to this file, do I have to rerun the install.sh everytime? Cause that takes about 20 minutes :( No, just restarting `sentry-web` container...

For enabling logging of ldap, we may have to change the Sentry source files, I've described it in README: ```plain # Make sure LOGGING.disable_existing_loggers is set to False (in sentry/conf/server.py)...

1. attribute key should be `username` instead of `name`, usually `name` should be mapped from `displayName`. ``` AUTH_LDAP_USER_ATTR_MAP = { 'username': 'sAMAccountName', 'name': 'displayName', 'email': 'mail' } ``` 3. `AUTH_LDAP_USER_QUERY_FIELD`...