From 5476dca0642339aad5493ec0e2adb1ee44798792 Mon Sep 17 00:00:00 2001 From: LWogan Date: Tue, 17 Oct 2023 17:02:00 +0100 Subject: [PATCH] CORE-17012 dlq topic to be used by multi source mediator for producer serialization errors --- .../main/resources/net/corda/schema/Common.yaml | 17 +++++++++++++++++ gradle.properties | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 data/topic-schema/src/main/resources/net/corda/schema/Common.yaml diff --git a/data/topic-schema/src/main/resources/net/corda/schema/Common.yaml b/data/topic-schema/src/main/resources/net/corda/schema/Common.yaml new file mode 100644 index 0000000000..683137b9a9 --- /dev/null +++ b/data/topic-schema/src/main/resources/net/corda/schema/Common.yaml @@ -0,0 +1,17 @@ +topics: + MediatorSerializationDLQ: + name: mediator.client.serialization.dlq + producers: + - crypto + - db + - flow + - flowMapper + - verification + - membership + - gateway + - link-manager + - persistence + - rest + - uniqueness + - tokenSelection + config: diff --git a/gradle.properties b/gradle.properties index ed6f197a28..f865f32176 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 37 +cordaApiRevision = 38 # Main kotlinVersion = 1.8.21