Make the Redis socket configurable

This commit is contained in:
2018-08-27 20:52:39 +01:00
parent 36105c7e9a
commit ad00e0c07d
3 changed files with 5 additions and 3 deletions

View File

@@ -3,8 +3,6 @@ import redis
from utils.loaders.command_loader import loadCommands
from utils.logging.log import *
r = redis.StrictRedis(unix_socket_path='/tmp/redis.sock', db=0)
configPath = "conf/"
certPath = "cert/"
@@ -49,5 +47,9 @@ def initConf():
loadConf(i)
def initMain():
global r
initConf()
loadCommands(register)
r = redis.StrictRedis(unix_socket_path=config["RedisSocket"], db=0)