mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
fix(kafka): add correct topic name for connector-logs for docker config and local development (#8169)
This commit is contained in:
@ -1028,7 +1028,7 @@ intent_analytics_topic = "hyperswitch-payment-intent-events"
|
||||
attempt_analytics_topic = "hyperswitch-payment-attempt-events"
|
||||
refund_analytics_topic = "hyperswitch-refund-events"
|
||||
api_logs_topic = "hyperswitch-api-log-events"
|
||||
connector_logs_topic = "hyperswitch-connector-api-events"
|
||||
connector_logs_topic = "hyperswitch-outgoing-connector-events"
|
||||
outgoing_webhook_logs_topic = "hyperswitch-outgoing-webhook-events"
|
||||
dispute_analytics_topic = "hyperswitch-dispute-events"
|
||||
audit_events_topic = "hyperswitch-audit-events"
|
||||
|
||||
@ -893,7 +893,7 @@ intent_analytics_topic = "hyperswitch-payment-intent-events"
|
||||
attempt_analytics_topic = "hyperswitch-payment-attempt-events"
|
||||
refund_analytics_topic = "hyperswitch-refund-events"
|
||||
api_logs_topic = "hyperswitch-api-log-events"
|
||||
connector_logs_topic = "hyperswitch-connector-api-events"
|
||||
connector_logs_topic = "hyperswitch-outgoing-connector-events"
|
||||
outgoing_webhook_logs_topic = "hyperswitch-outgoing-webhook-events"
|
||||
dispute_analytics_topic = "hyperswitch-dispute-events"
|
||||
audit_events_topic = "hyperswitch-audit-events"
|
||||
|
||||
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user