From 4d43a9f5b129b62b0fd02bf1127859cc355a8997 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Tue, 25 Oct 2022 10:23:14 +0200 Subject: [PATCH] Rename the index-scheduler module into insta_snapshot --- index-scheduler/src/{snapshot.rs => insta_snapshot.rs} | 0 index-scheduler/src/lib.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename index-scheduler/src/{snapshot.rs => insta_snapshot.rs} (100%) diff --git a/index-scheduler/src/snapshot.rs b/index-scheduler/src/insta_snapshot.rs similarity index 100% rename from index-scheduler/src/snapshot.rs rename to index-scheduler/src/insta_snapshot.rs diff --git a/index-scheduler/src/lib.rs b/index-scheduler/src/lib.rs index 033fdf206..d292802b9 100644 --- a/index-scheduler/src/lib.rs +++ b/index-scheduler/src/lib.rs @@ -23,7 +23,7 @@ mod batch; pub mod error; mod index_mapper; #[cfg(test)] -mod snapshot; +mod insta_snapshot; mod utils; pub type Result = std::result::Result; @@ -938,7 +938,7 @@ mod tests { use uuid::Uuid; use super::*; - use crate::snapshot::{snapshot_bitmap, snapshot_index_scheduler}; + use crate::insta_snapshot::{snapshot_bitmap, snapshot_index_scheduler}; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum FailureLocation {