From 99edcfcc20084d681c2d321c1531ceffcc942054 Mon Sep 17 00:00:00 2001 From: Sagar Patil Date: Fri, 20 Mar 2026 00:36:08 +0530 Subject: [PATCH] Fix PROD_KAFKA_TOPIC_VERSION_SETTING seed value for event-manager Kafka init Empty JSON '{}' caused event-manager TopicSettingServlet to fail during Kafka producer initialization. Set correct format: {"events":["GCP_KAFKA"]} Co-Authored-By: Claude Opus 4.6 (1M context) --- .../sql/002_populate_properties_table.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-framework/helm/property-settings-svc-v2/sql/002_populate_properties_table.sql b/test-framework/helm/property-settings-svc-v2/sql/002_populate_properties_table.sql index 15aed85..9ecad5d 100644 --- a/test-framework/helm/property-settings-svc-v2/sql/002_populate_properties_table.sql +++ b/test-framework/helm/property-settings-svc-v2/sql/002_populate_properties_table.sql @@ -34,6 +34,6 @@ VALUES 'AGENCY', 'ALL', 'PROD_KAFKA_TOPIC_VERSION_SETTING', - '{}', + '{"events":["GCP_KAFKA"]}', 1 );