Skip to content

Commit eabbd86

Browse files
committed
Stabilize placeholder-swap migration keys
Use the final 0.47.0 namespace for checkpoint and completion keys to preserve idempotence across prerelease updates.
1 parent 8cc07a3 commit eabbd86

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/migration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ const EVENT_MIGRATION_BATCH_SIZE: usize = 100;
117117

118118
/// Last default-column-family key durably processed by the placeholder swap.
119119
const COUNTRY_CODE_SWAP_CHECKPOINT_KEY: &[u8] =
120-
b"migration/0.47.0-alpha.3/country-code-placeholder-swap/checkpoint";
120+
b"migration/0.47.0/country-code-placeholder-swap/checkpoint";
121121

122122
/// Durable marker preventing the placeholder swap from being applied twice.
123123
const COUNTRY_CODE_SWAP_COMPLETED_KEY: &[u8] =
124-
b"migration/0.47.0-alpha.3/country-code-placeholder-swap/completed";
124+
b"migration/0.47.0/country-code-placeholder-swap/completed";
125125

126126
/// The name of the file recording the database format version.
127127
const VERSION_FILE_NAME: &str = "VERSION";

0 commit comments

Comments
 (0)