From fd2ee908819066f483d1880cc9b98c2f2291dad8 Mon Sep 17 00:00:00 2001 From: Ayende Rahien Date: Wed, 22 Apr 2015 16:54:29 +0300 Subject: [PATCH] Minor workaround for test --- Raven.Client.Lightweight/Document/ReplicationBehavior.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raven.Client.Lightweight/Document/ReplicationBehavior.cs b/Raven.Client.Lightweight/Document/ReplicationBehavior.cs index 9957ccd96a34..a195bb85c6d6 100644 --- a/Raven.Client.Lightweight/Document/ReplicationBehavior.cs +++ b/Raven.Client.Lightweight/Document/ReplicationBehavior.cs @@ -64,7 +64,7 @@ public async Task WaitAsync(Etag etag = null, TimeSpan? timeout = null, str int toCheck = Math.Min(replicas, destinationsToCheck.Count); var cts = new CancellationTokenSource(); - cts.CancelAfter(timeout ?? TimeSpan.FromSeconds(30)); + cts.CancelAfter(timeout ?? TimeSpan.FromSeconds(60)); var sp = Stopwatch.StartNew();