Skip to content

Commit 419b32b

Browse files
committed
Not an instance attribute.
1 parent c7e3451 commit 419b32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kafka/producer/kafka.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def __init__(self, **configs):
274274
if self.config['acks'] == 'all':
275275
self.config['acks'] = -1
276276

277-
self.client = self.config['client'] or KafkaClient(**self.config)
277+
client = self.config['client'] or KafkaClient(**self.config)
278278

279279
# Check Broker Version if not set explicitly
280280
if self.config['api_version'] == 'auto':

0 commit comments

Comments
 (0)