Skip to content

Commit 7174c4c

Browse files
authored
Remove nonexistent properties from exception message. (#1593)
This was introduced in dd853ff but the named properties were never added. Signed-off-by: Bradley Grainger <[email protected]>
1 parent 728e254 commit 7174c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/MySqlBulkLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ internal async ValueTask<int> LoadAsync(IOBehavior ioBehavior, CancellationToken
183183
else
184184
{
185185
if (!Local)
186-
throw new InvalidOperationException("Local must be true to use SourceStream, SourceDataTable, or SourceDataReader.");
186+
throw new InvalidOperationException("Local must be true to use SourceStream.");
187187

188188
FileName = GenerateSourceFileName();
189189
AddSource(FileName, Source!);

0 commit comments

Comments
 (0)