Increase allowed time drift to 10s. (#7238)

This commit is contained in:
Tomasz Drwięga
2017-12-08 11:16:20 +01:00
committed by GitHub
parent a05c90abb5
commit 77ee23bdd0

View File

@@ -193,7 +193,7 @@ const UPDATE_TIMEOUT_ERR_SECS: u64 = 60;
const UPDATE_TIMEOUT_INCOMPLETE_SECS: u64 = 10;
/// Maximal valid time drift.
pub const MAX_DRIFT: i64 = 500;
pub const MAX_DRIFT: i64 = 10_000;
type BoxFuture<A, B> = Box<Future<Item = A, Error = B> + Send>;