From 017f88ee99b0fe40221e6af92e0b6a976fbaf2ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 26 Aug 2019 13:48:40 +0200 Subject: fix: shared queue requires aligned buffer (#2816) --- tools/http_benchmark.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py index e3674d095..2394ad160 100755 --- a/tools/http_benchmark.py +++ b/tools/http_benchmark.py @@ -28,7 +28,7 @@ def get_addr(port=None): def deno_tcp(deno_exe): addr = get_addr() deno_cmd = [deno_exe, "run", "--allow-net", "tools/deno_tcp.ts", addr] - print "http_benchmark testing DENO." + print "http_benchmark testing DENO tcp." return run(deno_cmd, addr) @@ -38,7 +38,7 @@ def deno_tcp_current_thread(deno_exe): deno_exe, "run", "--current-thread", "--allow-net", "tools/deno_tcp.ts", addr ] - print "http_benchmark testing DENO." + print "http_benchmark testing DENO tcp (single-thread)." return run(deno_cmd, addr) -- cgit v1.2.3