Another timeout tweak to reduce rpc test flakiness (#27313)

* Another timeout tweak to reduce rpc test flakiness

* Increase the same rpc timeout further
This commit is contained in:
Xiang Zhu 2022-08-23 06:28:12 -07:00 committed by GitHub
parent b2ae7def06
commit 40ffb50cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());