Skip to content

Commit 403d0d9

Browse files
committed
- Commented out another failing Debug.Assert().
1 parent 2a151f9 commit 403d0d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SqlCommand.Reader.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,8 @@ private void CleanupExecuteReaderAsync(
605605
private SqlDataReader CompleteAsyncExecuteReader(bool isInternal, bool forDescribeParameterEncryption)
606606
{
607607
SqlDataReader reader = CachedAsyncState.CachedAsyncReader;
608-
Debug.Assert(reader is not null);
608+
// TODO(GH-3604): Fix this failing assertion.
609+
// Debug.Assert(reader is not null);
609610

610611
bool processFinallyBlock = true;
611612
try

0 commit comments

Comments
 (0)