From 5e0b9747121eab67c5a3ee3bb42a677e35da7fd6 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 10 Nov 2014 14:57:53 -0500 Subject: Add simple SqlSession implementation This allows us to store session data in the DB. This way session data can be shared by multiple servers behind a balancer. Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- tests/helpers/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/helpers') diff --git a/tests/helpers/common.py b/tests/helpers/common.py index a0adfae..e316718 100755 --- a/tests/helpers/common.py +++ b/tests/helpers/common.py @@ -138,7 +138,7 @@ class IpsilonTestBase(object): env=env, preexec_fn=os.setsid) self.processes.append(p) p.wait() - for d in ['adminconfig', 'userprefs', 'transactions']: + for d in ['adminconfig', 'userprefs', 'transactions', 'sessions']: cmd = ['/usr/bin/createdb', '-h', addr, '-p', port, d] subprocess.check_call(cmd, env=env) -- cgit