Increase timeout of cached database creation

This commit is contained in:
Conrado P. L. Gouvea 2021-08-06 10:34:27 -03:00 committed by Deirdre Connolly
parent 14532e44c1
commit 0cc773f4b8
1 changed files with 2 additions and 2 deletions

View File

@ -879,8 +879,8 @@ where
P: FnOnce(&mut TestChild<PathBuf>) -> Result<()>, P: FnOnce(&mut TestChild<PathBuf>) -> Result<()>,
{ {
println!("Creating cached database"); println!("Creating cached database");
// 8 hours // 16 hours
let timeout = Duration::from_secs(60 * 60 * 8); let timeout = Duration::from_secs(60 * 60 * 16);
// Use a persistent state, so we can handle large syncs // Use a persistent state, so we can handle large syncs
let mut config = cached_mandatory_checkpoint_test_config()?; let mut config = cached_mandatory_checkpoint_test_config()?;