From 9470d68a7e673a73c6997c6ab18910f2b1a27709 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Mon, 31 Aug 2015 07:08:05 +0200 Subject: [PATCH] Rename the SAML2 sessions database to saml2_sessions This makes it possible to have saml2 sessions and Ipsilon sessions in the same database without any problems. Signed-off-by: Patrick Uiterwijk Reviewed-by: Rob Crittenden --- ipsilon/util/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipsilon/util/data.py b/ipsilon/util/data.py index 200feb8..c0fe4ab 100644 --- a/ipsilon/util/data.py +++ b/ipsilon/util/data.py @@ -586,7 +586,7 @@ class SAML2SessionStore(Store): def __init__(self, database_url): super(SAML2SessionStore, self).__init__(database_url=database_url) - self.table = 'sessions' + self.table = 'saml2_sessions' # pylint: disable=protected-access table = SqlQuery(self._db, self.table, UNIQUE_DATA_COLUMNS)._table table.create(checkfirst=True) -- 2.20.1