Compare commits

..

1 Commits

Author SHA1 Message Date
Oliver Marks d82b1c73c0 Turn of cache dir to save memory.
continuous-integration/drone/push Build is passing Details
2019-05-06 10:54:57 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -626,6 +626,7 @@ HUEY = {
'store_errors': True, # Store error info if task throws exception.
'blocking': False, # Poll the queue rather than do blocking pop.
'backend_class': 'huey.RedisHuey', # Use path to redis huey by default,
'immediate': False,
'connection': {
'host': 'redis',
'port': 6379,

View File

@ -9,7 +9,7 @@ import json
server = Server(settings.LDAP_SERVER)
conn = Connection(
server,
'cn=admin, dc=maidstone-hackspace, dc=org, dc=uk',
f'cn=admin, {settings.LDAP_ROOT}',
settings.LDAP_PASSWORD,
auto_bind=True)