Skip to content

Commit

Permalink
CORE-19372: Fix Persistent Storage Type Case (#1486)
Browse files Browse the repository at this point in the history
Replace "DATABASE" by "Database" to describe persistent storage types.
  • Loading branch information
jujoramos authored Feb 6, 2024
1 parent c1f38f9 commit 497d483
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"type": {
"description": "The type of state manager implementation.",
"enum": [
"DATABASE"
"Database"
]
},
"additionalProperties": false
Expand All @@ -31,7 +31,7 @@
"if": {
"properties": {
"type": {
"const": "DATABASE"
"const": "Database"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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 = 36
cordaApiRevision = 37

# Main
kotlin.stdlib.default.dependency = false
Expand Down

0 comments on commit 497d483

Please sign in to comment.