Skip to content

Commit

Permalink
Fixed: dispose SqlBulkBatchWriter in sink
Browse files Browse the repository at this point in the history
A Dispose() call for _sqlBulkBatchWriter was missing in MSSqlServerSink class.
  • Loading branch information
ckadluba committed Dec 5, 2024
1 parent 314f9ed commit a5d5e86
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ protected virtual void Dispose(bool disposing)
{
if (disposing)
{
_sqlBulkBatchWriter.Dispose();
_sqlLogEventWriter.Dispose();
}

Expand Down

0 comments on commit a5d5e86

Please sign in to comment.