Browse Source

Removed /dev/null redirection

Eric Easley 11 years ago
parent
commit
08bfa95816
1 changed files with 1 additions and 1 deletions
  1. 1 1
      UrWeb/setup.py

+ 1 - 1
UrWeb/setup.py

@@ -10,7 +10,7 @@ def start(args, logfile, errfile):
                 'password=benchmarkdbpass '
                 'host=' + args.database_host)
   env = {'URWEB_PQ_CON': conn_string}
-  subprocess.Popen("./bench.exe -k -t " + threads + " > /dev/null",
+  subprocess.Popen("./bench.exe -k -t " + threads,
                    env=env, shell=True, cwd="UrWeb", stderr=errfile, stdout=logfile)
   return 0