Skip to content
Snippets Groups Projects
Commit eedf6bda authored by Stéphane Wirtel's avatar Stéphane Wirtel
Browse files

Fix in the NT Service

bzr revid: stephane@tinyerp.com-20081013213236-ql03yu2cyr5kk750
parent 262ca045
No related branches found
No related tags found
No related merge requests found
......@@ -95,9 +95,9 @@ class OpenERPServerService(win32serviceutil.ServiceFramework):
# Log a info message that the server is running
servicemanager.LogInfoMsg("OpenERP Server up and running")
# verification if the server is really running, else quit with an error
self.terpprocess.wait()
if not self.stopping:
sys.exit("OpenERP Server check: server not running, check the logfile for more info")
self.terpprocess.wait()
if not self.stopping:
sys.exit("OpenERP Server check: server not running, check the logfile for more info")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment