Skip to content

Commit

Permalink
Do not store apache kafka in hass.data (home-assistant#127090)
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet authored Sep 30, 2024
1 parent ebe4ed9 commit 2deab9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/apache_kafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Activate the Apache Kafka integration."""
conf = config[DOMAIN]

kafka = hass.data[DOMAIN] = KafkaManager(
kafka = KafkaManager(
hass,
conf[CONF_IP_ADDRESS],
conf[CONF_PORT],
Expand Down

0 comments on commit 2deab9e

Please sign in to comment.