From e4472db33f8497d0acb089a6920ca4e791911b47 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Thu, 26 Mar 2020 11:43:38 +0800 Subject: [PATCH] Unflake rpc subscriptions test by reducing sub count (#9078) automerge --- core/tests/rpc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/rpc.rs b/core/tests/rpc.rs index a5056d806f..ec5b907513 100644 --- a/core/tests/rpc.rs +++ b/core/tests/rpc.rs @@ -212,7 +212,7 @@ fn test_rpc_subscriptions() { // Create transaction signatures to subscribe to let transactions_socket = UdpSocket::bind("0.0.0.0:0").unwrap(); - let transactions: Vec = (0..500) + let transactions: Vec = (0..100) .map(|_| system_transaction::transfer(&alice, &Pubkey::new_rand(), 1, genesis_hash)) .collect(); let mut signature_set: HashSet = transactions