Commit ce2682bf authored by Stefan H. Holek's avatar Stefan H. Holek

Merged r69765:69766 from 2.9 branch.

Specifying session-resolution-seconds >= 1200 caused Zope startup to fail.
Fixes http://www.zope.org/Collectors/Zope/1983
parent 5b406236
...@@ -8,6 +8,9 @@ Zope Changes ...@@ -8,6 +8,9 @@ Zope Changes
Bugs fixed Bugs fixed
- Collector #1983: Specifying session-resolution-seconds >= 1200 caused
Zope startup to fail.
- Collector #2169: webdav.Resource.COPY did not send ObjectClonedEvent. - Collector #2169: webdav.Resource.COPY did not send ObjectClonedEvent.
Zope 2.10.0 beta 2 (2006/08/20) Zope 2.10.0 beta 2 (2006/08/20)
......
...@@ -426,14 +426,7 @@ class AppInitializer: ...@@ -426,14 +426,7 @@ class AppInitializer:
'session-delete-notify-script-path' % delnotify) 'session-delete-notify-script-path' % delnotify)
delnotify=None delnotify=None
toc = TransientObjectContainer( if 1: # Preserve indentation for diff
'session_data', 'Session Data Container',
addNotification = addnotify,
delNotification = delnotify,
limit=limit,
period_secs=period_spec)
if timeout_spec is not None:
toc = TransientObjectContainer('session_data', toc = TransientObjectContainer('session_data',
'Session Data Container', 'Session Data Container',
timeout_mins = timeout_spec, timeout_mins = timeout_spec,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment