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) <noreply@anthropic.com>
This commit is contained in:
Sagar Patil 2026-03-24 15:20:51 +05:30
parent 99edcfcc20
commit 4adea8f2d1

View File

@ -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);