Skip to content

Commit

Permalink
RavenDB-5751 increasing timeout for cluster to become un-stale in raf…
Browse files Browse the repository at this point in the history
…t tests
  • Loading branch information
talweiss1982 authored and ayende committed Dec 6, 2016
1 parent c1827d8 commit 356e26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Raven.Tests.Raft/RaftTestBase.cs
Expand Up @@ -245,7 +245,7 @@ protected void WaitForClusterToBecomeNonStale(int numberOfNodes)
{
var topology = server.Options.ClusterManager.Value.Engine.CurrentTopology;
return topology.AllVotingNodes.Count() == numberOfNodes;
}, TimeSpan.FromSeconds(5*numberOfNodes)), $"Node didn't become unstale in time, {server}"));
}, TimeSpan.FromSeconds(15*numberOfNodes)), $"Node didn't become unstale in time, {server}"));
}

protected void SetupClusterConfiguration(List<DocumentStore> clusterStores, bool enableReplication = true, Dictionary<string, string> databaseSettings = null)
Expand Down

0 comments on commit 356e26f

Please sign in to comment.