We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3eb91 commit 940b1c5Copy full SHA for 940b1c5
kafka/errors.py
@@ -268,6 +268,7 @@ class NotEnoughReplicasError(BrokerResponseError):
268
description = ('Returned from a produce request when the number of in-sync'
269
' replicas is lower than the configured minimum and'
270
' requiredAcks is -1.')
271
+ retriable = True
272
273
274
class NotEnoughReplicasAfterAppendError(BrokerResponseError):
@@ -276,6 +277,7 @@ class NotEnoughReplicasAfterAppendError(BrokerResponseError):
276
277
description = ('Returned from a produce request when the message was'
278
' written to the log, but with fewer in-sync replicas than'
279
' required.')
280
281
282
283
class InvalidRequiredAcksError(BrokerResponseError):
0 commit comments