option to store state out-of-volume (mostly untested)

This commit is contained in:
ed
2021-06-10 01:27:04 +02:00
parent a359d64d44
commit d6bf300d80
14 changed files with 123 additions and 44 deletions

View File

@@ -40,6 +40,7 @@ class HttpSrv(object):
self.is_mp = is_mp
self.args = broker.args
self.log = broker.log
self.auth = broker.authsrv
self.disconnect_func = None
self.mutex = threading.Lock()
@@ -47,7 +48,6 @@ class HttpSrv(object):
self.clients = {}
self.workload = 0
self.workload_thr_alive = False
self.auth = AuthSrv(self.args, self.log)
env = jinja2.Environment()
env.loader = jinja2.FileSystemLoader(os.path.join(E.mod, "web"))