wintoncode / winton-kafka-streams

A Python implementation of Apache Kafka Streams
Apache License 2.0
313 stars 55 forks source link

Replace use of CommitFailedException in StreamThread #31

Closed jhickson closed 6 years ago

jhickson commented 7 years ago

This exception is Java-only and is raised if one of the following error codes occurs:

(See this).

So, the code here needs changing to detect one of these error codes (available from KafkaException).

The codes that Python will see are here.