From e9a87e51f1c133fd183015bd61cfcb6528b7c64b Mon Sep 17 00:00:00 2001 From: Alexander Dusenbery Date: Thu, 27 Jun 2024 15:46:07 -0400 Subject: [PATCH] fix: correct the transaction event topic name --- enterprise_subsidy/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enterprise_subsidy/settings/base.py b/enterprise_subsidy/settings/base.py index 271eb1f5..71129c26 100644 --- a/enterprise_subsidy/settings/base.py +++ b/enterprise_subsidy/settings/base.py @@ -379,7 +379,7 @@ def root(*path_fragments): ALLOCATION_PRICE_VALIDATION_UPPER_BOUND_RATIO = 1.20 # Kafka and event broker settings -TRANSACTION_LIFECYCLE_TOPIC = "enterprise-subsidy-ledger-transaction-lifecycle" +TRANSACTION_LIFECYCLE_TOPIC = "enterprise-subsidies-transaction-lifecycle" TRANSACTION_CREATED_EVENT_NAME = "org.openedx.enterprise.subsidy_ledger_transaction.created.v1" TRANSACTION_COMMITTED_EVENT_NAME = "org.openedx.enterprise.subsidy_ledger_transaction.committed.v1" TRANSACTION_FAILED_EVENT_NAME = "org.openedx.enterprise.subsidy_ledger_transaction.failed.v1"