[Zodb-checkins] SVN: ZODB/branches/3.4/ Collector 1788: runzeo
fails in 2.8
Tim Peters
tim.one at comcast.net
Thu May 19 15:42:48 EDT 2005
Log message for revision 30422:
Collector 1788: runzeo fails in 2.8
A patch from Mark Hammond to repair a new Windows-specific
gimmick in ZEOServer.setup_win32_signals().
Changed:
U ZODB/branches/3.4/NEWS.txt
U ZODB/branches/3.4/src/ZEO/runzeo.py
-=-
Modified: ZODB/branches/3.4/NEWS.txt
===================================================================
--- ZODB/branches/3.4/NEWS.txt 2005-05-19 18:54:13 UTC (rev 30421)
+++ ZODB/branches/3.4/NEWS.txt 2005-05-19 19:42:47 UTC (rev 30422)
@@ -1,11 +1,12 @@
-What's new in ZODB3 3.4a9?
+What's new in ZODB3 3.4b1?
==========================
-Release date: 12-May-2005
+Release date: DD-May-2005
What follows is combined news from the "internal releases" (to support
ongoing Zope 2.8 and Zope3 development) since the last public ZODB 3.4
release. These are the dates of the internal releases:
+- 3.4b1 NN-May-2005
- 3.4a9 12-May-2005
- 3.4a8 09-May-2005
- 3.4a7 06-May-2005
@@ -100,6 +101,8 @@
Thanks to Mark Hammond for these ``runzeo.py`` enhancements on Windows:
+- (3.4b1) Collector 1788: Repair one of the new features below.
+
- (3.4a4) A pid file (containing the process id as a decimal string) is
created now for a ZEO server started via ``runzeo.py``. External programs
can read the pid from this file and derive a "signal name" used in a new
Modified: ZODB/branches/3.4/src/ZEO/runzeo.py
===================================================================
--- ZODB/branches/3.4/src/ZEO/runzeo.py 2005-05-19 18:54:13 UTC (rev 30421)
+++ ZODB/branches/3.4/src/ZEO/runzeo.py 2005-05-19 19:42:47 UTC (rev 30422)
@@ -225,10 +225,8 @@
windows_shutdown_handler)
SignalHandler.registerHandler(signal.SIGINT,
windows_shutdown_handler)
- # Can use the log rotate handler too.
- from Signals.Signals import logfileRotateHandler
SIGUSR2 = 12 # not in signal module on Windows.
- SignalHandler.registerHandler(SIGUSR2, logfileRotateHandler)
+ SignalHandler.registerHandler(SIGUSR2, self.handle_sigusr2)
def create_server(self):
from ZEO.StorageServer import StorageServer
More information about the Zodb-checkins
mailing list