Hi all, I’m trying out the Kafka integration and am getting the following error:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/apache_kafka/__init__.py", line 142, in write
await self._producer.send_and_wait(self._topic, payload)
File "/usr/local/lib/python3.8/site-packages/aiokafka/producer/producer.py", line 450, in send_and_wait
future = await self.send(
File "/usr/local/lib/python3.8/site-packages/aiokafka/producer/producer.py", line 433, in send
key_bytes, value_bytes = self._serialize(topic, key, value)
File "/usr/local/lib/python3.8/site-packages/aiokafka/producer/producer.py", line 341, in _serialize
self._producer_magic)
AttributeError: 'AIOKafkaProducer' object has no attribute '_producer_magic'
I believe I have it configured correctly, and I know the topic I’m trying to publish to exists. (I can write to it manually, etc) I’ve tried filtering specific entities as well as not filtering at all, but it makes no difference - same error every time. I’m not using SSL either. Thanks for any help