Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -781,9 +781,9 @@ private static async Task WaitForSubscriptionsToBeLive(PersistentSubscriptions.P

for (int i = 0; resp.Subscriptions.Any(s => s.Status != "Live"); i++)
{
Assert.AreNotEqual(5, i, "Reached too many retries to get all subscriptions live!");
Assert.AreNotEqual(20, i, "Reached too many retries to get all subscriptions live!");

await Task.Delay(500);
await Task.Delay(1000);
resp = await GetSubscriptions();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
using EventStore.Core.Authorization;
using EventStore.Core.Authorization.AuthorizationPolicies;
using EventStore.Core.Bus;
using EventStore.Core.Messages;
using EventStore.Core.Data;
using EventStore.Core.Messages;
using EventStore.Core.Messaging;
using EventStore.Core.Services;
using EventStore.Core.TransactionLog.LogRecords;
Expand All @@ -35,7 +35,7 @@ public class StreamBasedAuthPolicyRegistryTests
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
};

private static readonly TimeSpan Timeout = TimeSpan.FromSeconds(5);
private static readonly TimeSpan Timeout = TimeSpan.FromSeconds(10);

private StreamBasedAuthorizationPolicyRegistry CreateSut(
FakePolicySelectorPlugin[] plugins, AuthorizationPolicySettings defaultSettings,
Expand Down
Loading