diff options
Diffstat (limited to 'kafka/errors.py')
-rw-r--r-- | kafka/errors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kafka/errors.py b/kafka/errors.py index a34ffef..6960810 100644 --- a/kafka/errors.py +++ b/kafka/errors.py @@ -81,8 +81,8 @@ class OffsetOutOfRangeError(BrokerResponseError): class InvalidMessageError(BrokerResponseError): errno = 2 message = 'INVALID_MESSAGE' - description = ('This indicates that a message contents does not match its' - ' CRC.') + description = ('This message has failed its CRC checksum, exceeds the' + ' valid size, or is otherwise corrupt.') class UnknownTopicOrPartitionError(BrokerResponseError): |