Skip to content

Commit b0f14d0

Browse files
committed
Migration,SplitSnapProps: Add missing migration enum
1 parent 3bf4d48 commit b0f14d0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
### Fixed
12+
13+
- Migration: Fixed splitSnapProps bug not properly handling KVS properties
14+
1115
## [1.30.0] - 2024-12-17
1216

1317
### Added

server/src/main/java/com/linbit/linstor/dbdrivers/migration/MigrationUtils_SplitSnapProps.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ public enum InstanceType
3434
SNAP("/SNAPSHOTS/", "/SNAPS_RSC/", "/SNAPS/"),
3535
SNAP_DFN("/SNAPSHOTDEFINITIONS/", "/SNAP_DFNS_RSC_DFN/", "/SNAP_DFNS/"),
3636
SNAP_VLM("/SNAPSHOTS/", "/SNAP_VLMS_VLM/", "/SNAP_VLMS/"),
37-
SNAP_VLM_DFN("/SNAPSHOTVOLUMEDEFINITIONS/", "/SNAP_VLM_DFNS_VLM_DFN/", "/SNAP_VLM_DFNS/");
37+
SNAP_VLM_DFN("/SNAPSHOTVOLUMEDEFINITIONS/", "/SNAP_VLM_DFNS_VLM_DFN/", "/SNAP_VLM_DFNS/"),
38+
39+
KVS("/KEYVALUESTORES/", "/KVS/", "/KVS/");
3840

3941
private final String origPrefix;
4042
private final String newDfltPrefix;

0 commit comments

Comments
 (0)