Browse Source

attempt to start travis

stefanocasazza 10 years ago
parent
commit
6d96810e1b
1 changed files with 0 additions and 4 deletions
  1. 0 4
      frameworks/C++/ULib/setup.py

+ 0 - 4
frameworks/C++/ULib/setup.py

@@ -29,12 +29,8 @@ def start(args, logfile, errfile):
     setup_util.replace_text(fcfg, "PREFORK_CHILD .*", "PREFORK_CHILD " + str(multiprocessing.cpu_count()))
 
     # 2. Start ULib Server (userver_tcp)
-    logfile.write("ULib: trying to start server %s -c %s\n" % (fprg, fcfg))
-
-    # Run in the background, but keep stdout/stderr for easy debugging
     subprocess.Popen( "%s -c %s" % (fprg, fcfg), shell=True, stdout=logfile, stderr=errfile, env = get_env_for_database(args))
 
-    logfile.write("ULib: server STARTED\n")
     return 0
   except subprocess.CalledProcessError:
     return 1