summaryrefslogtreecommitdiffstats
path: root/stress-test/examples
diff options
context:
space:
mode:
authorBlas Rodriguez Irizar <rodrigblas@gmail.com>2020-12-08 23:38:25 +0100
committerGitHub <noreply@github.com>2020-12-09 07:38:25 +0900
commitfc7a4b3c6e765d6d2b4ea97266cefbf466d52dc9 (patch)
tree0b92fb11f764a5e88d62a9f79aa2107ebcb75f42 /stress-test/examples
parente01391351bcb0715f737cefe94e1bc99f19af226 (diff)
chore: fix stress test (#3233)
Diffstat (limited to 'stress-test/examples')
-rw-r--r--stress-test/examples/simple_echo_tcp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/stress-test/examples/simple_echo_tcp.rs b/stress-test/examples/simple_echo_tcp.rs
index 099523fd..01e54502 100644
--- a/stress-test/examples/simple_echo_tcp.rs
+++ b/stress-test/examples/simple_echo_tcp.rs
@@ -9,7 +9,7 @@ use tokio::{
};
const TCP_ENDPOINT: &str = "127.0.0.1:8080";
-const NUM_MSGS: usize = 10_000;
+const NUM_MSGS: usize = 100;
const MSG_SIZE: usize = 1024;
fn main() {