[Currently](https://github.com/encode/broadcaster/blob/435c35eefcf54192331a44881caf626a5993b2f0/broadcaster/_backends/kafka.py#L31), unsubscribing from one Kafka channel unsubscribes from all channels. Based on the aiokafka [docs](https://aiokafka.readthedocs.io/en/stable/api.html#aiokafka.AIOKafkaConsumer.subscribe) I'm guessing we want to do ```python self._consumer_channels.remove(channel) self._consumer.subscribe(topics=self._consumer_channels) ```
Currently, unsubscribing from one Kafka channel unsubscribes from all channels. Based on the aiokafka docs I'm guessing we want to do