From f7125376730f8b890e6681d8302e2fc2740cf26e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 6 Dec 2024 16:20:36 +0100 Subject: [PATCH] [kafka] Replaced `kafka` dependency with `kafka-python-ng`. The `kafka` module seems to be unmaintained and it's breaking apart at initialization. See: https://stackoverflow.com/questions/77287622/modulenotfounderror-no-module-named-kafka-vendor-six-moves-in-dockerized-djan --- platypush/plugins/kafka/manifest.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/platypush/plugins/kafka/manifest.json b/platypush/plugins/kafka/manifest.json index 69ef6db51a..823714b9c7 100644 --- a/platypush/plugins/kafka/manifest.json +++ b/platypush/plugins/kafka/manifest.json @@ -4,17 +4,11 @@ "platypush.message.event.kafka.KafkaMessageEvent" ], "install": { - "apt": [ - "python-kafka" - ], - "dnf": [ - "python-kafka" - ], "pip": [ - "kafka" + "kafka-python-ng" ] }, "package": "platypush.plugins.kafka", "type": "plugin" } -} \ No newline at end of file +}