Skip to content

Commit

Permalink
Merge pull request #353 from netbox-community/develop
Browse files Browse the repository at this point in the history
Version 0.26.1
  • Loading branch information
cimnine committed Oct 27, 2020
2 parents 43aea3a + 0749603 commit 097bea8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.26.0
0.26.1
2 changes: 1 addition & 1 deletion configuration/ldap/ldap_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
1 change: 0 additions & 1 deletion docker/gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@
accesslog = '-'
capture_output = False
loglevel = 'info'
raw_env = 'prometheus_multiproc_dir=/tmp/metrics'

0 comments on commit 097bea8

Please sign in to comment.