fix(debezium): identity connector 添加 wallet_addresses 表

Debezium identity-connector 之前只捕获 user_accounts 表,
导致 auth-service 的 WalletAddressCdcConsumer 收不到任何事件。
添加 public.wallet_addresses 到 table.include.list。

需要重新注册 connector 才能生效。

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-29 14:06:42 -08:00
parent dc51c19dfd
commit 6f01892945
1 changed files with 1 additions and 1 deletions

View File

@ -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",