Skip to content

Commit 4a7f50d

Browse files
authored
fix wrong error message (#3411)
fixes #3410
1 parent 7c5bd05 commit 4a7f50d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Data.SqlClient/src/Microsoft/Data/Common/ConnectionString/PoolBlockingUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ internal static PoolBlockingPeriod ConvertToPoolBlockingPeriod(string keyword, o
128128
}
129129
else
130130
{
131-
throw ADP.InvalidEnumerationValue(typeof(ApplicationIntent), (int)eValue);
131+
throw ADP.InvalidEnumerationValue(typeof(PoolBlockingPeriod), (int)eValue);
132132
}
133133
}
134134
}

0 commit comments

Comments
 (0)