From 40ffb50cde5fe6ba8adf21be6f2d337f6524683d Mon Sep 17 00:00:00 2001 From: Xiang Zhu Date: Tue, 23 Aug 2022 06:28:12 -0700 Subject: [PATCH] Another timeout tweak to reduce rpc test flakiness (#27313) * Another timeout tweak to reduce rpc test flakiness * Increase the same rpc timeout further --- rpc-test/tests/rpc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc-test/tests/rpc.rs b/rpc-test/tests/rpc.rs index 5265e93f14..6135aecbd4 100644 --- a/rpc-test/tests/rpc.rs +++ b/rpc-test/tests/rpc.rs @@ -402,7 +402,7 @@ fn test_rpc_subscriptions() { } } - let deadline = Instant::now() + Duration::from_secs(10); + let deadline = Instant::now() + Duration::from_secs(60); let mut account_notifications = transactions.len(); while account_notifications > 0 { let timeout = deadline.saturating_duration_since(Instant::now());