diff --git a/VERSION b/VERSION index 4e8f395fa..30f6cf8d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.26.0 +0.26.1 diff --git a/configuration/ldap/ldap_config.py b/configuration/ldap/ldap_config.py index d1e4444b2..4cd5b8b8f 100644 --- a/configuration/ldap/ldap_config.py +++ b/configuration/ldap/ldap_config.py @@ -71,7 +71,7 @@ def _import_group_type(group_type_name): # For more granular permissions, we can map LDAP groups to Django groups. AUTH_LDAP_FIND_GROUP_PERMS = environ.get('AUTH_LDAP_FIND_GROUP_PERMS', 'True').lower() == 'true' -AUTH_LDAP_MIRROR_GROUPS = environ.get('AUTH_LDAP_MIRROR_GROUPS', None).lower() == 'true' +AUTH_LDAP_MIRROR_GROUPS = environ.get('AUTH_LDAP_MIRROR_GROUPS', '').lower() == 'true' # Cache groups for one hour to reduce LDAP traffic AUTH_LDAP_CACHE_TIMEOUT = int(environ.get('AUTH_LDAP_CACHE_TIMEOUT', 3600)) diff --git a/docker/gunicorn_config.py b/docker/gunicorn_config.py index 9e223108c..4ce776317 100644 --- a/docker/gunicorn_config.py +++ b/docker/gunicorn_config.py @@ -6,4 +6,3 @@ accesslog = '-' capture_output = False loglevel = 'info' -raw_env = 'prometheus_multiproc_dir=/tmp/metrics'