diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-01 09:03:11 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-01 09:03:11 +0200 |
commit | 91eac6e52808dec25d365e02e2bc8bf7ea3dcd6c (patch) | |
tree | 11ac008e9809cedb2a134cd63d3f78f00bfd9ca7 /Bugzilla | |
parent | 8a5c7c7fbce860d8522d45fc3dc1d5c362553b91 (diff) | |
download | bugzilla-91eac6e52808dec25d365e02e2bc8bf7ea3dcd6c.tar.gz bugzilla-91eac6e52808dec25d365e02e2bc8bf7ea3dcd6c.tar.xz |
Bug 1199941 - inactive sessions should expire faster (a week?)
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 99c2fe70c..59796a076 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -470,7 +470,7 @@ use constant TIMETRACKING_FIELDS => # The maximum number of days a token will remain valid. use constant MAX_TOKEN_AGE => 3; # How many days a logincookie will remain valid if not used. -use constant MAX_LOGINCOOKIE_AGE => 30; +use constant MAX_LOGINCOOKIE_AGE => 7; # How many seconds (default is 6 hours) a sudo cookie remains valid. use constant MAX_SUDO_TOKEN_AGE => 21600; |