fix(kafka): add correct topic name for connector-logs for docker config and local development (#8169)

This commit is contained in:
Sandeep Kumar
2025-05-30 13:01:05 +05:30
committed by GitHub
parent a658c8c4ea
commit d91cf70ae3
3 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ CREATE TABLE authentication_queue (
`issuer_id` Nullable(String),
`scheme_name` Nullable(String),
`exemption_requested` Nullable(Bool),
`exemption_accepted` Nullable(Bool),
`exemption_accepted` Nullable(Bool)
) ENGINE = Kafka SETTINGS kafka_broker_list = 'kafka0:29092',
kafka_topic_list = 'hyperswitch-authentication-events',
kafka_group_name = 'hyper',
@ -196,7 +196,7 @@ CREATE MATERIALIZED VIEW authentication_mv TO authentications (
`issuer_id` Nullable(String),
`scheme_name` Nullable(String),
`exemption_requested` Nullable(Bool),
`exemption_accepted` Nullable(Bool),
`exemption_accepted` Nullable(Bool)
) AS
SELECT
authentication_id,