mirror of
https://github.com/moepman/bk-dss
synced 2024-11-17 19:39:11 +01:00
dss.py: automatically decode REDIS responses
... as UTF-8 Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
parent
cb18911ce4
commit
1f88227664
2
dss.py
2
dss.py
@ -17,7 +17,7 @@ app.config.from_pyfile('config.cfg')
|
||||
app.jinja_env.trim_blocks = True
|
||||
app.jinja_env.lstrip_blocks = True
|
||||
|
||||
rdb = Redis(host=app.config.get('REDIS_HOST', '127.0.0.1'), password=app.config.get('REDIS_PASSWD'))
|
||||
rdb = Redis(host=app.config.get('REDIS_HOST', '127.0.0.1'), password=app.config.get('REDIS_PASSWD'), decode_responses=True)
|
||||
|
||||
ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_DEMAND)
|
||||
ldap.set_option(ldap.OPT_REFERRALS, 0)
|
||||
|
Loading…
Reference in New Issue
Block a user