summaryrefslogtreecommitdiff
path: root/kafka/consumer/multiprocess.py
diff options
context:
space:
mode:
authorSpace <space@wibidata.com>2015-03-31 15:25:38 -0700
committerSpace <space@wibidata.com>2015-04-03 10:23:39 -0700
commit1c856e8400e1c4fe6dccd562fbcf4d1bde38755d (patch)
tree69e8a5142d8946adddc44590612a9968540d801f /kafka/consumer/multiprocess.py
parent9fd08119170b64c56ea024d12ef6b0e6482d778b (diff)
downloadkafka-python-1c856e8400e1c4fe6dccd562fbcf4d1bde38755d.tar.gz
Make external API consistently support python3 strings for topic.
Diffstat (limited to 'kafka/consumer/multiprocess.py')
-rw-r--r--kafka/consumer/multiprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/consumer/multiprocess.py b/kafka/consumer/multiprocess.py
index 3acd470..cfe0ef6 100644
--- a/kafka/consumer/multiprocess.py
+++ b/kafka/consumer/multiprocess.py
@@ -163,7 +163,7 @@ class MultiProcessConsumer(Consumer):
simple_consumer_options.pop('partitions', None)
options.update(simple_consumer_options)
- args = (client.copy(), group, topic, self.queue,
+ args = (client.copy(), self.group, self.topic, self.queue,
self.size, self.events)
proc = Process(target=_mp_consume, args=args, kwargs=options)
proc.daemon = True