[Zope-Checkins] SVN: Zope/branches/2.9/ Specifying
session-resolution-seconds >= 1200 caused Zope startup to fail.
Stefan H. Holek
stefan at epy.co.at
Thu Aug 24 11:13:44 EDT 2006
Log message for revision 69766:
Specifying session-resolution-seconds >= 1200 caused Zope startup to fail.
Fixes http://www.zope.org/Collectors/Zope/1983
Changed:
U Zope/branches/2.9/doc/CHANGES.txt
U Zope/branches/2.9/lib/python/OFS/Application.py
-=-
Modified: Zope/branches/2.9/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.9/doc/CHANGES.txt 2006-08-24 14:39:34 UTC (rev 69765)
+++ Zope/branches/2.9/doc/CHANGES.txt 2006-08-24 15:13:43 UTC (rev 69766)
@@ -8,6 +8,9 @@
Bugs fixed
+ - Collector #1983: Specifying session-resolution-seconds >= 1200 caused
+ Zope startup to fail.
+
- Collector #2169: webdav.Resource.COPY did not send ObjectClonedEvent.
- Updated Five to bugfix release 1.3.7.
Modified: Zope/branches/2.9/lib/python/OFS/Application.py
===================================================================
--- Zope/branches/2.9/lib/python/OFS/Application.py 2006-08-24 14:39:34 UTC (rev 69765)
+++ Zope/branches/2.9/lib/python/OFS/Application.py 2006-08-24 15:13:43 UTC (rev 69766)
@@ -428,14 +428,7 @@
'session-delete-notify-script-path'),delnotify)
delnotify=None
- toc = TransientObjectContainer(
- 'session_data', 'Session Data Container',
- addNotification = addnotify,
- delNotification = delnotify,
- limit=limit,
- period_secs=period_spec)
-
- if timeout_spec is not None:
+ if 1: # Preserve indentation for diff
toc = TransientObjectContainer('session_data',
'Session Data Container',
timeout_mins = timeout_spec,
More information about the Zope-Checkins
mailing list