From f5a7d3a6051456d8eb73759e56b7ffd029cc0d32 Mon Sep 17 00:00:00 2001 From: Dickon Reed Date: Wed, 18 Oct 2023 16:23:09 +0100 Subject: [PATCH] use the string construction function --- data/topic-schema/src/main/java/net/corda/schema/Schemas.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/topic-schema/src/main/java/net/corda/schema/Schemas.java b/data/topic-schema/src/main/java/net/corda/schema/Schemas.java index 4b943f709e..17ae8eff36 100644 --- a/data/topic-schema/src/main/java/net/corda/schema/Schemas.java +++ b/data/topic-schema/src/main/java/net/corda/schema/Schemas.java @@ -88,7 +88,7 @@ private Crypto() { public static final String RPC_OPS_MESSAGE_TOPIC = "crypto.ops.rpc"; public static final String RPC_OPS_MESSAGE_RESPONSE_TOPIC = getRPCResponseTopic(RPC_OPS_MESSAGE_TOPIC); public static final String REKEY_MESSAGE_TOPIC = "crypto.key.rotation.ops"; - public static final String REKEY_MESSAGE_RESPONSE_TOPIC = "crypto.key.rotation.ops.resp"; + public static final String REKEY_MESSAGE_RESPONSE_TOPIC = getRPCResponseTopic(REKEY_MESSAGE_TOPIC); public static final String REKEY_MESSAGE_STATUS_TOPIC = "crypto.key.rotation.status"; public static final String REWRAP_MESSAGE_TOPIC = "crypto.key.rotation.individual"; public static final String REWRAP_MESSAGE_RESPONSE_TOPIC = getRPCResponseTopic(REWRAP_MESSAGE_TOPIC);