[FIX]:integration server script added missing '--no-xmlrpcs'

bzr revid: nch@tinyerp.com-20100609101301-t7tmqw3gfipgtsjf
This commit is contained in:
nch@tinyerp.com 2010-06-09 15:43:01 +05:30
parent 443ba5c05c
commit 72b861187e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def to_decode(s):
return s
def start_server(root_path, port, netport, addons_path):
os.system('python2.5 %sopenerp-server.py --pidfile=openerp.pid --xmlrpc-port=%s --netrpc-port=%s --addons-path=%s' %(root_path, str(port),str(netport),addons_path))
os.system('python2.5 %sopenerp-server.py --pidfile=openerp.pid --no-xmlrpcs --xmlrpc-port=%s --netrpc-port=%s --addons-path=%s' %(root_path, str(port),str(netport),addons_path))
def clean():
if os.path.isfile('openerp.pid'):
ps = open('openerp.pid')