From a6648264cc345e158dd5cac9fad81009231fa9f7 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Thu, 8 Jun 2017 15:14:26 +0000 Subject: [PATCH] [doc] Fix sublist formatting in monasca_common/kafka_lib/NOTES.md Change-Id: I465e3fd86b7875e51f5d9b0a82e106ede6787390 Closes-Bug: #1696786 --- monasca_common/kafka_lib/NOTES.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/monasca_common/kafka_lib/NOTES.md b/monasca_common/kafka_lib/NOTES.md index 8fb0f474..811650dd 100644 --- a/monasca_common/kafka_lib/NOTES.md +++ b/monasca_common/kafka_lib/NOTES.md @@ -9,12 +9,12 @@ There are a few levels of abstraction: # Methods of producing -* Round robbin (each message to the next partition) +* Round robin (each message to the next partition) * All-to-one (each message to one partition) * All-to-all? (each message to every partition) * Partitioned (run each message through a partitioning function) -** HashPartitioned -** FunctionPartition + * HashPartitioned + * FunctionPartition # Possible API @@ -28,5 +28,3 @@ There are a few levels of abstraction: consumer.commit() # commit it for msg in consumer.iter_messages(): print msg - -