From f77afe0b7504cdedf7ae73041419e3df4ef9c851 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Fri, 16 Jul 2021 18:07:10 +0100 Subject: [PATCH] avoid overquota in soak tests --- backend/telemetry_core/tests/soak_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/telemetry_core/tests/soak_tests.rs b/backend/telemetry_core/tests/soak_tests.rs index c87b9cb..4201bff 100644 --- a/backend/telemetry_core/tests/soak_tests.rs +++ b/backend/telemetry_core/tests/soak_tests.rs @@ -78,7 +78,7 @@ async fn run_soak_test(opts: SoakTestOpts) { "ts":"2021-07-12T10:37:47.714666+01:00", "payload": { "authority":true, - "chain": "Test Chain", + "chain": "Polkadot", // <- so that we don't go over quota with lots of nodes. "config":"", "genesis_hash": BlockHash::from_low_u64_ne(1), "implementation":"Substrate Node", @@ -100,7 +100,7 @@ async fn run_soak_test(opts: SoakTestOpts) { // Every feed subscribes to the chain above to recv messages about it: for (feed_tx, _) in &mut feeds { - feed_tx.send_command("subscribe", "Test Chain").unwrap(); + feed_tx.send_command("subscribe", "Polkadot").unwrap(); } // Start sending "update" messages from nodes at time intervals.