From 4adea8f2d13f4841a58b897888bcf096ca48748c Mon Sep 17 00:00:00 2001 From: Sagar Patil Date: Tue, 24 Mar 2026 15:20:51 +0530 Subject: [PATCH] fix: add PROD_KAFKA_TOPIC_VERSION_SETTING to SQL dump Required by eventManagerServiceV2 for Kafka topic routing. Without this, EventManager fails to initialize on first request. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../sql/004_property_settings_db_v2.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test-framework/helm/property-settings-svc-v2/sql/004_property_settings_db_v2.sql b/test-framework/helm/property-settings-svc-v2/sql/004_property_settings_db_v2.sql index ac15f2d..724b4ad 100644 --- a/test-framework/helm/property-settings-svc-v2/sql/004_property_settings_db_v2.sql +++ b/test-framework/helm/property-settings-svc-v2/sql/004_property_settings_db_v2.sql @@ -119,3 +119,7 @@ UNLOCK TABLES; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-12-10 7:12:58 + +-- Seed PROD_KAFKA_TOPIC_VERSION_SETTING (required by eventManagerServiceV2 for Kafka topic routing) +INSERT IGNORE INTO properties (entity_type, entity_value, property_type, property_value, is_active) +VALUES ('AGENCY', 'ALL', 'PROD_KAFKA_TOPIC_VERSION_SETTING', '{"events":["GCP_KAFKA"]}', 1);