Skip to content

Commit

Permalink
Remove deprecated ConnectionError
Browse files Browse the repository at this point in the history
This has been deprecated for a bit in favor of `KafkaConnectionError`
because it conflicts with Python's built-in `ConnectionError`.

Time to remove it as part of cleaning up our old deprecated code.
  • Loading branch information
jeffwidman committed May 24, 2019
1 parent cee4d17 commit 4b37d45
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions kafka/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,6 @@ class KafkaConnectionError(KafkaError):
invalid_metadata = True


class ConnectionError(KafkaConnectionError):
"""Deprecated"""


class BufferUnderflowError(KafkaError):
pass

Expand Down

0 comments on commit 4b37d45

Please sign in to comment.