From 6f0189294559b036d367c5c31001d90808dbbb72 Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 29 Jan 2026 14:06:42 -0800 Subject: [PATCH] =?UTF-8?q?fix(debezium):=20identity=20connector=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20wallet=5Faddresses=20=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Debezium identity-connector 之前只捕获 user_accounts 表, 导致 auth-service 的 WalletAddressCdcConsumer 收不到任何事件。 添加 public.wallet_addresses 到 table.include.list。 需要重新注册 connector 才能生效。 Co-Authored-By: Claude Opus 4.5 --- backend/services/scripts/debezium/identity-connector.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/scripts/debezium/identity-connector.json b/backend/services/scripts/debezium/identity-connector.json index 1fde3417..792b6455 100644 --- a/backend/services/scripts/debezium/identity-connector.json +++ b/backend/services/scripts/debezium/identity-connector.json @@ -12,7 +12,7 @@ "topic.prefix": "cdc.identity", - "table.include.list": "public.user_accounts", + "table.include.list": "public.user_accounts,public.wallet_addresses", "plugin.name": "pgoutput", "publication.name": "debezium_identity_publication",