PM Extra

Results 113 comments of PM Extra

I think `LOGGING['disable_existing_loggers'] = False` won't work with `sentry.conf.py`. Because `sentry/conf/server.py` is executed after `sentry.conf.py`. It will override `disable_existing_loggers` become `True`.

`AUTH_LDAP_DEFAULT_SENTRY_ORGANIZATION` is a setting from the obsoleted upstream project, it should be set to the organization display name, which is unsuitable as an identifier. So, I made a new setting...

Another thing, I just noticed that you set the `AUTH_LDAP_SENTRY_USERNAME_FIELD`, which is obsoleted too. It's replaced by `AUTH_LDAP_USER_QUERY_FIELD` and `AUTH_LDAP_USER_ATTR_MAP`.

https://github.com/getsentry/sentry/issues/10380 @hostalp

@jav-12 @ZsBT I've verified this plugin can work fine with Sentry 24.7.1. So I think the problems you were encountering are not caused by compatibility. I'm going to close this...

I have said that `AUTH_LDAP_USER_QUERY_FIELD` should be `username` rather than `sAMAccountName`, which is the default. You set too many options that you don't understand, please follow the docs and keep...

Are you sure the `organization-slug` is correct? Try to access `http://your_sentry_host/organizations/{organization-slug}/` to check.

So, you thought `organization-slug` was a constant? No, it’s just a placeholder, I think you've figured that out by now. So that’s all settled, right?

> Just to add some more detail here: > > **Good News** - It appears that go-containerregistry is respecting the proxy settings when pulling in base image(s) > > **Bad...

For now, I wrote the duplicate and cumbersome CI codes in every project: ```yaml - /kaniko/executor ${DOCKER_HUB_MIRROR:+"--registry-mirror=$DOCKER_HUB_MIRROR"} --build-arg "ftp_proxy=${ftp_proxy}" --build-arg "FTP_PROXY=${ftp_proxy}" --build-arg "http_proxy=${http_proxy}" --build-arg "HTTP_PROXY=${http_proxy}" --build-arg "https_proxy=${https_proxy}" --build-arg "HTTPS_PROXY=${https_proxy}" --build-arg...