From c665e1a2d65e595fb6eef74320ca5e10fe0e8d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Mon, 18 Dec 2017 18:45:40 -0600 Subject: [PATCH] httping only 3 requests is enough --- slides/common/sampleapp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/common/sampleapp.md b/slides/common/sampleapp.md index b407fb06..c470e887 100644 --- a/slides/common/sampleapp.md +++ b/slides/common/sampleapp.md @@ -484,12 +484,12 @@ We will use `httping`. - Check the latency of `rng`: ```bash - httping -c 10 localhost:8001 + httping -c 3 localhost:8001 ``` - Check the latency of `hasher`: ```bash - httping -c 10 localhost:8002 + httping -c 3 localhost:8002 ``` ]