Selaa lähdekoodia

remove redundant print statements from benchmark

Denis Mazur 4 vuotta sitten
vanhempi
commit
dc188b0991
1 muutettua tiedostoa jossa 0 lisäystä ja 6 poistoa
  1. 0 6
      benchmarks/benchmark_throughput_p2p.py

+ 0 - 6
benchmarks/benchmark_throughput_p2p.py

@@ -138,17 +138,13 @@ def benchmark_throughput(
         )
         server.start()
         server.ready.wait()
-        print("Joining client")
 
         timestamps["server_ready"] = time.perf_counter()
         can_start.set()
 
         for client in clients:
-            print("client finished")
             client.join()
 
-        print("Clients joined")
-
         timestamps["clients_finished"] = time.perf_counter()
 
     except BaseException as e:
@@ -160,9 +156,7 @@ def benchmark_throughput(
                 client.terminate()
         server.shutdown()
         timestamps["server_shutdown_finished"] = time.perf_counter()
-        print("Joining server")
         server.join()
-        print("Joined server")
 
     sys.stdout.flush()
     sys.stderr.flush()