From 1b78b345b5373a627542c3f0271422dc7e37b9d6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 4 Jun 2014 09:46:45 +0200 Subject: [PATCH] restore default credential validity period to 28 days had been inadvertantly committed as 2 hours for a while when debugging the short-lived credential issue used to be 31 days prior to that --- sfa/trust/credential.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sfa/trust/credential.py b/sfa/trust/credential.py index c9bc4e5b..9d0fd283 100644 --- a/sfa/trust/credential.py +++ b/sfa/trust/credential.py @@ -50,8 +50,7 @@ from sfa.trust.gid import GID from sfa.util.xrn import urn_to_hrn, hrn_authfor_hrn # 31 days, in seconds -DEFAULT_CREDENTIAL_LIFETIME = 2 * 3600 -#DEFAULT_CREDENTIAL_LIFETIME = 86400 * 31 +DEFAULT_CREDENTIAL_LIFETIME = 86400 * 28 # TODO: -- 2.43.0