Make the Redis socket configurable

pull/1/head
Mark Veidemanis 6 years ago
parent 36105c7e9a
commit ad00e0c07d

@ -6,6 +6,7 @@
"Key": "key.pem", "Key": "key.pem",
"Certificate": "cert.pem" "Certificate": "cert.pem"
}, },
"RedisSocket": "/tmp/redis.sock",
"UsePassword": true, "UsePassword": true,
"ConnectOnCreate": false, "ConnectOnCreate": false,
"Notifications": { "Notifications": {

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

@ -14,7 +14,6 @@ def getWho(query):
f = getWhoSingle(i, query) f = getWhoSingle(i, query)
if f: if f:
result[i] = f result[i] = f
print(result)
return result return result
def getNumWhoEntries(name): def getNumWhoEntries(name):

Loading…
Cancel
Save