Skip to content

Commit 097bea8

Browse files
authored
Merge pull request #353 from netbox-community/develop
Version 0.26.1
2 parents 43aea3a + 0749603 commit 097bea8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.26.0
1+
0.26.1

configuration/ldap/ldap_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _import_group_type(group_type_name):
7171

7272
# For more granular permissions, we can map LDAP groups to Django groups.
7373
AUTH_LDAP_FIND_GROUP_PERMS = environ.get('AUTH_LDAP_FIND_GROUP_PERMS', 'True').lower() == 'true'
74-
AUTH_LDAP_MIRROR_GROUPS = environ.get('AUTH_LDAP_MIRROR_GROUPS', None).lower() == 'true'
74+
AUTH_LDAP_MIRROR_GROUPS = environ.get('AUTH_LDAP_MIRROR_GROUPS', '').lower() == 'true'
7575

7676
# Cache groups for one hour to reduce LDAP traffic
7777
AUTH_LDAP_CACHE_TIMEOUT = int(environ.get('AUTH_LDAP_CACHE_TIMEOUT', 3600))

docker/gunicorn_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66
accesslog = '-'
77
capture_output = False
88
loglevel = 'info'
9-
raw_env = 'prometheus_multiproc_dir=/tmp/metrics'

0 commit comments

Comments
 (0)