Commit 84bf1298 authored by Stefan H. Holek's avatar Stefan H. Holek

Specifying session-resolution-seconds >= 1200 caused Zope startup to fail.

Fixes http://www.zope.org/Collectors/Zope/1983
parent a3684b83
...@@ -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.
- Updated Five to bugfix release 1.3.7. - Updated Five to bugfix release 1.3.7.
......
...@@ -428,14 +428,7 @@ class AppInitializer: ...@@ -428,14 +428,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