Compare commits

..

1 Commits

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

View File

@ -626,7 +626,6 @@ 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,
f'cn=admin, {settings.LDAP_ROOT}',
'cn=admin, dc=maidstone-hackspace, dc=org, dc=uk',
settings.LDAP_PASSWORD,
auto_bind=True)