Skip to content

Commit

Permalink
Update avro schemas and topic names for key rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
anien committed Oct 9, 2023
1 parent 69ad9d0 commit 3eec3d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions data/topic-schema/src/main/java/net/corda/schema/Schemas.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ private Crypto() {
public static final String FLOW_OPS_MESSAGE_TOPIC = "crypto.ops.flow";
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.rotations.ops";
public static final String REKEY_MESSAGE_RESPONSE_TOPIC = getRPCResponseTopic(REKEY_MESSAGE_TOPIC);
public static final String REKEY_MESSAGE_TOPIC = "crypto.key.rotation.ops";
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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ topics:
- crypto
config:
CryptoOpsRekeyTopic:
name: crypto.key.rotations.ops
name: crypto.key.rotation.ops
consumers:
- crypto
producers:
- rest
CryptoOpsRekeyResponseTopic:
name: crypto.key.rotations.ops.resp
CryptoOpsRekeyStatusTopic:
name: crypto.key.rotation.ops.resp
consumers:
- rest
producers:
Expand Down

0 comments on commit 3eec3d5

Please sign in to comment.