Skip to content

Commit

Permalink
Minor workaround for test
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Apr 22, 2015
1 parent cffa3af commit fd2ee90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Raven.Client.Lightweight/Document/ReplicationBehavior.cs
Expand Up @@ -64,7 +64,7 @@ public async Task<int> 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();

Expand Down

0 comments on commit fd2ee90

Please sign in to comment.