From fbf46dca69c1101a640b98d26db6d3f6042662f3 Mon Sep 17 00:00:00 2001 From: Craig Bryant Date: Mon, 11 Jan 2016 20:13:28 -0700 Subject: [PATCH] Remove invalid ascii characters Not sure how they got there but characters in columns 18 and 19 on line 43 are not ascii. Remove them Change-Id: Ibbf27c89b3ba6f110b47d042ea24cc1443ad055d --- monasca_common/kafka/consumer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monasca_common/kafka/consumer.py b/monasca_common/kafka/consumer.py index 982c6793..40ec3924 100644 --- a/monasca_common/kafka/consumer.py +++ b/monasca_common/kafka/consumer.py @@ -40,7 +40,7 @@ keep in mind when dealing with batched data. called. This is a good time to process whatever has been batched. 2. If the traffic across the kafka topic is low enough it will take a long time to build a batch of data. A commit_callback is available that will - fire when the commit_timeout duration has elapsed since the last commit. + fire when the commit_timeout duration has elapsed since the last commit. """