Roundup Tracker - Issues

Issue 681046

classification
roundup-server -d not working under Windows
Type: Severity: normal
Components: Command-line interface Versions:
process
Status: closed fixed
:
: richard : hfoffani, richard
Priority: normal :

Created on 2003-02-05 16:54 by hfoffani, last changed 2003-02-08 15:14 by anonymous.

Messages
msg633 Author: [hidden] (hfoffani) Date: 2003-02-05 16:54
the -d option of  roundup_server.py does not work in
Windows OSs.
an exception is raised because an unexisting fork() call.

a clarifying note in the -h option could help

regards,
Hernan

roundup 0.5.5
python 2.2.2
windows 2000 spanish version
msg634 Author: [hidden] (richard) Date: 2003-02-06 01:11
Logged In: YES 
user_id=6405

What exactly is the error? Does os.fork() not exist? 
 
msg635 Author: [hidden] (richard) Date: 2003-02-06 02:55
Logged In: YES 
user_id=6405

If it's as simple as the os module not having a "fork", which I believe it is, 
then I've fixed this bug. 
 
msg636 Author: [hidden] (anonymous) Date: 2003-02-08 15:14
Logged In: NO 

yes. that's the error.
follows a python session in my windows home pc.

Python 2.2.1 (#34, Apr  9 2002, 19:34:33) [MSC 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more
information.
>>> import os
>>> os.fork()
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute 'fork'
>>>


History
Date User Action Args
2003-02-05 16:54:04hfoffanicreate