comparison runXena.py @ 10:14aaed60e07b

Removed the obsolete --no-auto switch when invoking xena
author melissacline
date Mon, 16 Mar 2015 18:20:24 -0700
parents 8bb037f88ed2
children 77f5d8cbac77
comparison
equal deleted inserted replaced
9:17d06264fa64 10:14aaed60e07b
32 32
33 def run(self): 33 def run(self):
34 while True: 34 while True:
35 #Main code goes here ... 35 #Main code goes here ...
36 #Note that logger level needs to be set to logging.DEBUG before this shows up in the logs 36 #Note that logger level needs to be set to logging.DEBUG before this shows up in the logs
37 xenaCmdline = "java -jar %s -r %s/files -d %s/db -t %s/tmp --logfile %s/xena.log -p %s -H 0.0.0.0 --no-auto" 37 xenaCmdline = "java -jar %s -r %s/files -d %s/db -t %s/tmp --logfile %s/xena.log -p %s -H 0.0.0.0"
38 xenaBaseDir = xena.baseDir() 38 xenaBaseDir = xena.baseDir()
39 xenaCmd = xenaCmdline % (xena.jarPath(), xenaBaseDir, 39 xenaCmd = xenaCmdline % (xena.jarPath(), xenaBaseDir,
40 xenaBaseDir, xenaBaseDir, 40 xenaBaseDir, xenaBaseDir,
41 xenaBaseDir, xena.port()) 41 xenaBaseDir, xena.port())
42 logger.debug("Invoking Xena VM with command %s" % (xenaCmd)) 42 logger.debug("Invoking Xena VM with command %s" % (xenaCmd))