Skip to content

Commit

Permalink
Drop 20230405185602 from supported schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeoghegan committed Apr 19, 2023
1 parent 4aa8276 commit 1893e3f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aggregator_core/src/datastore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub mod test_util;

/// List of schema versions that this version of Janus can safely run on. If any other schema
/// version is seen, [`Datastore::new`] fails.
const SUPPORTED_SCHEMA_VERSIONS: &[i64] = &[20230405185602, 20230417204528];
const SUPPORTED_SCHEMA_VERSIONS: &[i64] = &[20230417204528];

/// Datastore represents a datastore for Janus, with support for transactional reads and writes.
/// In practice, Datastore instances are currently backed by a PostgreSQL database.
Expand Down Expand Up @@ -5455,7 +5455,6 @@ mod tests {
#[rstest_reuse::template]
#[rstest]
// The version numbers in these cases must match SUPPORTED_SCHEMA_VERSIONS
#[case::version_20230405185602(ephemeral_datastore_max_schema_version(20230405185602))]
#[case::version_20230417204528(ephemeral_datastore_max_schema_version(20230417204528))]
async fn schema_versions_template(
#[future(awt)]
Expand Down

0 comments on commit 1893e3f

Please sign in to comment.