Skip to content

Commit

Permalink
Merge pull request #173 from lsst-ts/tickets/LOVE-58
Browse files Browse the repository at this point in the history
Remove encryption layer for channels-redis
  • Loading branch information
sebastian-aranda authored Mar 9, 2023
2 parents 88f4926 + 8d1ce6e commit 6794b94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions manager/manager/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@
],
"expiry": REDIS_CONFIG_EXPIRY,
"capacity": REDIS_CONFIG_CAPACITY,
"symmetric_encryption_keys": [SECRET_KEY],
},
},
}
Expand All @@ -250,7 +249,9 @@
AUTH_LDAP_BIND_DN = "uid=svc_love,cn=users,cn=accounts,dc=lsst,dc=cloud"
AUTH_LDAP_BIND_PASSWORD = os.environ.get("AUTH_LDAP_BIND_PASSWORD")
AUTH_LDAP_USER_SEARCH = LDAPSearch(
"cn=users,cn=accounts,dc=lsst,dc=cloud", ldap.SCOPE_SUBTREE, "(uid=%(user)s)",
"cn=users,cn=accounts,dc=lsst,dc=cloud",
ldap.SCOPE_SUBTREE,
"(uid=%(user)s)",
)
AUTH_LDAP_USER_ATTR_MAP = {
"first_name": "givenname",
Expand Down

0 comments on commit 6794b94

Please sign in to comment.