mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 12:06:53 -06:00
commit
eecd51e08b
@ -1,5 +1,13 @@
|
|||||||
# NetBox v2.9
|
# NetBox v2.9
|
||||||
|
|
||||||
|
## v2.9.6 (2020-10-09)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* [#5229](https://github.com/netbox-community/netbox/issues/5229) - Fix AttributeError exception when LDAP authentication is enabled
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v2.9.5 (2020-10-09)
|
## v2.9.5 (2020-10-09)
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
@ -175,6 +175,6 @@ class LDAPBackend:
|
|||||||
# Enable logging for django_auth_ldap
|
# Enable logging for django_auth_ldap
|
||||||
ldap_logger = logging.getLogger('django_auth_ldap')
|
ldap_logger = logging.getLogger('django_auth_ldap')
|
||||||
ldap_logger.addHandler(logging.StreamHandler())
|
ldap_logger.addHandler(logging.StreamHandler())
|
||||||
ldap_logger.setLevel(logging.INFO if settings.DEBUG is False else logging.DEBUG)
|
ldap_logger.setLevel(logging.INFO)
|
||||||
|
|
||||||
return obj
|
return obj
|
||||||
|
@ -16,7 +16,7 @@ from django.core.validators import URLValidator
|
|||||||
# Environment setup
|
# Environment setup
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION = '2.9.5'
|
VERSION = '2.9.6'
|
||||||
|
|
||||||
# Hostname
|
# Hostname
|
||||||
HOSTNAME = platform.node()
|
HOSTNAME = platform.node()
|
||||||
|
Loading…
Reference in New Issue
Block a user