diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-09-20 17:03:38 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-12-17 10:13:03 -0800 |
commit | 07e09c1c2ec6787fc7e4f3c2578d31b4a15d20bc (patch) | |
tree | d11ea782a8ebd2f32a1b3a2d4cab55669ed46838 /kafka/producer/kafka.py | |
parent | 7690b1ab32b50ce3798c310648e7b69e46fafdbd (diff) | |
download | kafka-python-07e09c1c2ec6787fc7e4f3c2578d31b4a15d20bc.tar.gz |
Fixup doc references to max_in_flight_requests_per_connection
Diffstat (limited to 'kafka/producer/kafka.py')
-rw-r--r-- | kafka/producer/kafka.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/producer/kafka.py b/kafka/producer/kafka.py index 747f620..17f27ab 100644 --- a/kafka/producer/kafka.py +++ b/kafka/producer/kafka.py @@ -122,7 +122,7 @@ class KafkaProducer(object): to resend any record whose send fails with a potentially transient error. Note that this retry is no different than if the client resent the record upon receiving the error. Allowing retries - without setting max_in_flight_connections_per_connection to 1 will + without setting max_in_flight_requests_per_connection to 1 will potentially change the ordering of records because if two batches are sent to a single partition, and the first fails and is retried but the second succeeds, then the records in the second batch may |