diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-05-11 18:14:42 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-05-11 18:14:42 -0400 |
commit | 551456691bcca369308cc8580705f1baa258f9fe (patch) | |
tree | 3ce2b9aa142f9946548fc6175dcc07fa2561ace0 /tests | |
parent | d169919a1ff5a7668c8bb23a45b59011a91132e1 (diff) | |
download | ipsilon.git-551456691bcca369308cc8580705f1baa258f9fe.tar.gz ipsilon.git-551456691bcca369308cc8580705f1baa258f9fe.tar.xz ipsilon.git-551456691bcca369308cc8580705f1baa258f9fe.zip |
Use plugin-specific configuration, better expiration
Use a SAML2 plugin specific option to specify the database uri
for sessions.
Use a much more robust method to find sessions that need
expiration (thanks Patrick).
https://fedorahosted.org/ipsilon/ticket/90
Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/helpers/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/common.py b/tests/helpers/common.py index 93d0f17..cbd516b 100755 --- a/tests/helpers/common.py +++ b/tests/helpers/common.py @@ -187,7 +187,7 @@ class IpsilonTestBase(object): self.processes.append(p) p.wait() for d in ['adminconfig', 'users', 'transactions', 'sessions', - 'saml2sessions']: + 'saml2.sessions.db']: cmd = ['/usr/bin/createdb', '-h', addr, '-p', port, d] subprocess.check_call(cmd, env=env) |