Skip to content

Commit

Permalink
Permit longer chain building fetching for dynamic revocation tests
Browse files Browse the repository at this point in the history
This is meant to address the flakiness where chain building can time out for very busy CI machines.

The test fixture is already outerloop, so extending the timeout should not adversely affect CI inner loop performance.
  • Loading branch information
vcsjones authored Jan 30, 2022
1 parent ce15dc7 commit ee390ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace System.Security.Cryptography.X509Certificates.Tests.RevocationTests
public static partial class DynamicRevocationTests
{
// The CI machines are doing an awful lot of things at once, be generous with the timeout;
internal static readonly TimeSpan s_urlRetrievalLimit = TimeSpan.FromSeconds(15);
internal static readonly TimeSpan s_urlRetrievalLimit = TimeSpan.FromSeconds(30);

private static readonly Oid s_tlsServerOid = new Oid("1.3.6.1.5.5.7.3.1", null);

Expand Down

0 comments on commit ee390ff

Please sign in to comment.