Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert change that made SqlDataReader.ReadAsync() non-blocking #547

Merged
merged 10 commits into from
May 1, 2020
Prev Previous commit
Next Next commit
Small Sleep time
  • Loading branch information
cheenamalhotra committed Apr 28, 2020
commit 9a2ae1bb32db935987ec114c26761a5eb7cd5f07
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ IF EXISTS (SELECT name FROM msdb.dbo.sysalerts WHERE name = N'{alertName}')
{
retry = true;
retryAttempt++;
Console.WriteLine($"Retry Attempt : {retryAttempt}");
Console.WriteLine($"CancelFollowedByAlert Test retry attempt : {retryAttempt}");
Thread.Sleep(500);
continue;
}
}
Expand Down