We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf3fb75 + 985f645 commit 10bccc5Copy full SHA for 10bccc5
test/EFCore.Cosmos.FunctionalTests/TestUtilities/TestEnvironment.cs
@@ -34,7 +34,8 @@ public static class TestEnvironment
34
35
public static bool UseTokenCredential { get; } = Config["UseTokenCredential"] == "true";
36
37
- public static TokenCredential TokenCredential { get; } = new AzureCliCredential();
+ public static TokenCredential TokenCredential { get; } = new AzureCliCredential(
38
+ new AzureCliCredentialOptions { ProcessTimeout = TimeSpan.FromMinutes(5) });
39
40
public static string SubscriptionId { get; } = Config["SubscriptionId"];
41
0 commit comments