Browse Source

run in server mode as logs should be stdout/stderr per reqs

nareshv 11 years ago
parent
commit
fe02e453ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hhvm/setup.py

+ 1 - 1
hhvm/setup.py

@@ -18,7 +18,7 @@ def start(args, logfile, errfile):
     if os.name == 'nt':
     if os.name == 'nt':
       # Not supported !
       # Not supported !
       return 0
       return 0
-    subprocess.check_call("hhvm --config " + home + "/FrameworkBenchmarks/hhvm/deploy/config.hdf -m daemon", shell=True, stderr=errfile, stdout=logfile)
+    subprocess.check_call("hhvm --config " + home + "/FrameworkBenchmarks/hhvm/deploy/config.hdf -m server", shell=True, stderr=errfile, stdout=logfile)
     return 0
     return 0
   except subprocess.CalledProcessError:
   except subprocess.CalledProcessError:
     return 1
     return 1