Skip to content

Commit d0dff80

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

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)