From b71d28370634b404da4c53928b928c6c81b0c88e Mon Sep 17 00:00:00 2001 From: Lyn Date: Thu, 13 Oct 2022 11:07:07 -0700 Subject: [PATCH] ref: Remove default mapping of "transaction" topic to "events" --- snuba/settings/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/snuba/settings/__init__.py b/snuba/settings/__init__.py index 30f2c3a0cd..7914b503c2 100644 --- a/snuba/settings/__init__.py +++ b/snuba/settings/__init__.py @@ -185,11 +185,7 @@ class RedisClusters(TypedDict): } # Mapping of default Kafka topic name to custom names -KAFKA_TOPIC_MAP: Mapping[str, str] = { - # TODO: Remove once we are done splitting transactions from the shared events topic - "transactions": "events", - "snuba-transactions-commit-log": "snuba-commit-log", -} +KAFKA_TOPIC_MAP: Mapping[str, str] = {} # Mapping of default Kafka topic name to broker config KAFKA_BROKER_CONFIG: Mapping[str, Mapping[str, Any]] = {}