From 043e7fda6b07cdd7230b785f9aa1841113e4228c Mon Sep 17 00:00:00 2001 From: Zack Dever Date: Thu, 12 Dec 2013 17:39:19 -0800 Subject: [PATCH] fix typo in README acks_timeout -> ack_timeout --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9f782d12..b79882773 100644 --- a/README.md +++ b/README.md @@ -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")