Commit 4c173c7d authored by Denis Bilenko's avatar Denis Bilenko

bench_sendall.py: replace string with bytes PY3

parent a2d3f0fa
......@@ -15,7 +15,7 @@ def main():
server.start()
length = 50 * 0x100000
data = "x" * length
data = b"x" * length
spent_total = 0
N = 10
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment