You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function internalFlushCurrentBatch, this line of code, should not be invoked if the batch builder associated with the producer is a multi batches container.
Potential Fix:
Using internalFlushCurrentBatches instead, if the associated batch builder is a multi batches container.
if p.batchBuilder.IsMultiBatches() {
p.internalFlushCurrentBatches()
} else {
p.internalFlushCurrentBatch()
}
The text was updated successfully, but these errors were encountered:
Original Issue: apache#749
Function internalFlushCurrentBatch, this line of code, should not be invoked if the batch builder associated with the producer is a multi batches container.
Potential Fix:
Using internalFlushCurrentBatches instead, if the associated batch builder is a multi batches container.
The text was updated successfully, but these errors were encountered: