浏览代码

Removed /dev/null redirection

Eric Easley 12 年之前
父节点
当前提交
08bfa95816
共有 1 个文件被更改,包括 1 次插入1 次删除
  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