You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2004/01/14 03:18:36 UTC

cvs commit: httpd-python/lib/python/mod_python Session.py

grisha      2004/01/13 18:18:36

  Modified:    lib/python/mod_python Session.py
  Log:
  Fixed timeout to be 30 min.
  
  Revision  Changes    Path
  1.9       +2 -2      httpd-python/lib/python/mod_python/Session.py
  
  Index: Session.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/Session.py,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Session.py	28 Aug 2003 18:49:14 -0000	1.8
  +++ Session.py	14 Jan 2004 02:18:36 -0000	1.9
  @@ -68,7 +68,7 @@
   import tempfile
   
   COOKIE_NAME="pysid"
  -DFT_TIMEOUT=30*60*60 # 30 min
  +DFT_TIMEOUT=30*60 # 30 min
   CLEANUP_CHANCE=1000 # cleanups have 1 in CLEANUP_CHANCE chance
   
   tempdir = tempfile.gettempdir()