diff options
author | David Arthur <mumrah@gmail.com> | 2013-12-13 07:08:35 -0800 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-12-13 07:08:35 -0800 |
commit | 67c13f9bcd35edc03ff821c427007b660c1a3384 (patch) | |
tree | 2bc2fed04dfea1059b1f25bbc434dfe57dafcd5b | |
parent | cc96e5c89aa65427cb0851e21a47cffa675987dc (diff) | |
parent | 043e7fda6b07cdd7230b785f9aa1841113e4228c (diff) | |
download | kafka-python-67c13f9bcd35edc03ff821c427007b660c1a3384.tar.gz |
Merge pull request #78 from zever/README-typo
fix typo in README acks_timeout -> ack_timeout
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ producer.send_messages("async message") # by all in sync replicas before sending a response producer = SimpleProducer(kafka, "my-topic", async=False, req_acks=SimpleProducer.ACK_AFTER_LOCAL_WRITE, - acks_timeout=2000) + ack_timeout=2000) response = producer.send_messages("async message") |