Skip to content

Commit

Permalink
Unflake rpc subscriptions test by reducing sub count (#9078) (#9082)
Browse files Browse the repository at this point in the history
automerge
  • Loading branch information
mergify[bot] authored Mar 26, 2020
1 parent d4ddb62 commit ec76826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Transaction> = (0..500)
let transactions: Vec<Transaction> = (0..100)
.map(|_| system_transaction::transfer(&alice, &Pubkey::new_rand(), 1, genesis_hash))
.collect();
let mut signature_set: HashSet<String> = transactions
Expand Down

0 comments on commit ec76826

Please sign in to comment.