We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52f17e commit 80c3a76Copy full SHA for 80c3a76
kafka/conn.py
@@ -305,9 +305,12 @@ def _process_response(self, read_buffer):
305
# 0.8.2 quirk
306
if (self.config['api_version'] == (0, 8, 2) and
307
ifr.response_type is GroupCoordinatorResponse and
308
+ ifr.correlation_id != 0 and
309
recv_correlation_id == 0):
- raise Errors.KafkaError(
310
- 'Kafka 0.8.2 quirk -- try creating a topic first')
+ log.warning('Kafka 0.8.2 quirk -- GroupCoordinatorResponse'
311
+ ' coorelation id does not match request. This'
312
+ ' should go away once at least one topic has been'
313
+ ' initialized on the broker')
314
315
elif ifr.correlation_id != recv_correlation_id:
316
0 commit comments