edoardocomar commented on PR #16229:
URL: https://github.com/apache/kafka/pull/16229#issuecomment-2155264998
with the client handler ignoring the CONCURRENT_TRANSACTIONS error
it happened often enough that after the admin.fence call, the producer which
should have been fenced could carry on.
e.g. if I restore that client behavior I get :
```
...
producer.commitTransaction()
adminClient.fenceProducers(Collections.singletonList(txnId)).all().get()
producer.beginTransaction()
try {
producer.send(record).get()
fail("expected ProducerFencedException") // <- test failed here
} catch {
``
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]