From 0bebbe4018f4b654f4140854ffed23a62a6dee78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 1 Aug 2020 06:43:43 +0200 Subject: [PATCH] http and udp load tests: fix cli program names --- aquatic_http_load_test/src/main.rs | 2 +- aquatic_udp_load_test/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aquatic_http_load_test/src/main.rs b/aquatic_http_load_test/src/main.rs index 9fadbc3..aade6c9 100644 --- a/aquatic_http_load_test/src/main.rs +++ b/aquatic_http_load_test/src/main.rs @@ -25,7 +25,7 @@ const MBITS_FACTOR: f64 = 1.0 / ((1024.0 * 1024.0) / 8.0); pub fn main(){ aquatic_cli_helpers::run_app_with_cli_and_config::( - "aquatic: udp bittorrent tracker: load tester", + "aquatic http bittorrent tracker: load tester", run, ) } diff --git a/aquatic_udp_load_test/src/main.rs b/aquatic_udp_load_test/src/main.rs index 40ba061..807f00a 100644 --- a/aquatic_udp_load_test/src/main.rs +++ b/aquatic_udp_load_test/src/main.rs @@ -26,7 +26,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc; pub fn main(){ aquatic_cli_helpers::run_app_with_cli_and_config::( - "aquatic: udp bittorrent tracker: load tester", + "aquatic udp bittorrent tracker: load tester", run, ) }