diff options
author | Mahendra M <mahendra.m@gmail.com> | 2013-06-28 13:07:10 +0530 |
---|---|---|
committer | Mahendra M <mahendra.m@gmail.com> | 2013-06-28 13:07:10 +0530 |
commit | 6b76d9d682b2b7c6280dda84dbad07e6d856de0e (patch) | |
tree | 81f20c3d154c4d33a23449f2131dbf3c7c16d436 | |
parent | c2a49c1370536e7155c34bb93fa14a23f367d5f4 (diff) | |
download | kafka-python-6b76d9d682b2b7c6280dda84dbad07e6d856de0e.tar.gz |
Fix markup in README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,6 @@ producer.send("key1", "some message") producer.send("key2", "this methode") producer = KeyedProducer(kafka, "my-topic", partitioner=RoundRobinPartitioner) -``` # Multiprocess consumer # This will split the number of partitions among two processes @@ -70,6 +69,7 @@ for message in consumer: for message in consumer.get_messages(count=5, block=True, timeout=4): print(message) +``` ## Low level |