Skip to content

Commit

Permalink
RavenDB-22652 : increase delay between retries to 500 ms
Browse files Browse the repository at this point in the history
  • Loading branch information
aviv committed Aug 15, 2024
1 parent 5eeecb1 commit 4e0ac1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/InterversionTests/MixedClusterTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected async Task<List<ProcessNode>> CreateCluster(string[] peers, X509Certif
if (--retries == 0)
throw new InvalidOperationException($"failed to add node '{processNode.Url}' to the cluster", e);

await Task.Delay(10);
await Task.Delay(500);
continue;
}

Expand Down

0 comments on commit 4e0ac1e

Please sign in to comment.