Skip to content

Commit

Permalink
CORE-17818: Api change to remove uniqueness checker duplication (#1371)
Browse files Browse the repository at this point in the history
This change is required as part of this PR corda/corda-runtime-os#5184 to remove uniqueness checker duplication. This change will remove an unused uniqueness checker topic from the api.
  • Loading branch information
emilybowe authored Dec 4, 2023
1 parent 88bdb24 commit 5299b58
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 22 deletions.
10 changes: 0 additions & 10 deletions data/topic-schema/src/main/java/net/corda/schema/Schemas.java
Original file line number Diff line number Diff line change
Expand Up @@ -224,16 +224,6 @@ private Rest() {
public static final String REST_PERM_ENTITY_TOPIC = "rest.permissions.permission";
}

/**
* Uniqueness checker schema.
*/
public static final class UniquenessChecker {
private UniquenessChecker() {
}

public static final String UNIQUENESS_CHECK_TOPIC = "uniqueness.check";
}

/**
* Virtual node schema.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ topics:
- flow
producers:
- db
- crypto
- flow
- flowMapper
- persistence
- uniqueness
- tokenSelection
config:
FlowEventDLQTopic:
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cordaProductVersion = 5.2.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 = 10
cordaApiRevision = 11

# Main
kotlinVersion = 1.8.21
Expand Down

0 comments on commit 5299b58

Please sign in to comment.