Less strict timeouts

This commit is contained in:
Alex Auvolat
2022-09-01 16:30:44 +02:00
parent f3bf34b6a1
commit df094bd807
7 changed files with 16 additions and 10 deletions
+2 -1
View File
@@ -24,7 +24,8 @@ use crate::merkle::*;
use crate::replication::*;
use crate::*;
const TABLE_SYNC_RPC_TIMEOUT: Duration = Duration::from_secs(30);
// Sync RPC can contain a lot of data, so have a 1min timeout
const TABLE_SYNC_RPC_TIMEOUT: Duration = Duration::from_secs(60);
// Do anti-entropy every 10 minutes
const ANTI_ENTROPY_INTERVAL: Duration = Duration::from_secs(10 * 60);