Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[Tests] Diagnose Windows cert creation failures#3237

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
paulmedynski merged 3 commits intomainfromdev/paul/issue-3223-pwsh-test-failure
Apr 8, 2025
Merged
Changes from1 commit
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
PrevPrevious commit
Issue 34304:#3223 Fix Functional test failures in CI
- Addressed review comments.
  • Loading branch information
@paulmedynski
paulmedynski committedApr 4, 2025
commit4dabe6369a2eb0bcba0fe6ff072a96c05884e34a
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,6 +8,7 @@
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;

namespace Microsoft.Data.SqlClient.TestUtilities.Fixtures
{
Expand DownExpand Up@@ -166,8 +167,10 @@ exit 1
//
// https://sqlclientdrivers.visualstudio.com/ADO.Net/_workitems/edit/34304
//
// Delay 5 seconds between retries, and retry 3 times.
const int delay = 5;
const int retries = 3;

string commandOutput = string.Empty;

for (int attempt = 1; attempt <= retries; ++attempt)
Expand DownExpand Up@@ -195,7 +198,7 @@ exit 1
$"attempt {attempt} of {retries}; " +
$"retrying in {delay} seconds...");

System.Threading.Thread.Sleep(delay * 1000);
Thread.Sleep(TimeSpan.FromSeconds(delay));
}

throw new Exception(
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp