You are not logged in Log in Join
You are here: Home » Download Zope Products » Zope Enterprise Objects (OBSOLETE) » ZEO Tracker » ZEO Tracker » collector_issue_contents

Log in
Name

Password

 
 
Issue 9 of ZEO Tracker []
Title: ZEO Tracker
Status: New Security related: No
Description: The file start.py contains the line: signal.signal(signal.SIGHUP, handler) Unfortunately Python on a Windows platform does not include SIGHUP in t...
From: Duncan on: Mar 26, 01 11:58
Duncan Last update: Mar 26, 01 11:58
Topic/class: /bug report Importance: normal
Version info:
Issue 9 Transcript
2 entries
= Request - Entry #2 by Duncan on Mar 23, 2001 12:14 pm

 
On Mar 23, 2001 8:46 am, Duncan wrote:

and I forgot to mention that:
    open(zeo_pid,'w').write("%s %s" % (os.getppid(), os.getpid()))

also needs to be changed to:
    open(zeo_pid,'w').write("%s" % (os.getpid()))

________________________________________

= request - Entry #1 by Duncan on Mar 23, 2001 8:46 am

ZEO fails to start on Microsoft Platforms

The file start.py contains the line:
    signal.signal(signal.SIGHUP, handler)
Unfortunately Python on a Windows platform does not include SIGHUP in the signal module. The code needs to test for the existence of the SIGHUP signal before attempting to install the handler.

A workaround for Windows users is to simply comment out the line.