On 6/24/05, Austin <[EMAIL PROTECTED]> wrote:
>     def __init__(self,args):
>         win32serviceutil.ServiceFramework.__init__(self,args)
>         self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
>         self.check = 1

Change last two lines to

    self.check = 1
    self.hWaitStop = win32event.CreateEvent(None, 0, 1, None)

(SvcDoRun is waiting for hWaitStop event, but you never signal it.)

- kv
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to