From: Patrick Uiterwijk Date: Mon, 31 Aug 2015 05:08:05 +0000 (+0200) Subject: Rename the SAML2 sessions database to saml2_sessions X-Git-Tag: v1.1.0~33 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=commitdiff_plain;h=9470d68a7e673a73c6997c6ab18910f2b1a27709 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 --- 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)