Skip to content

Commit

Permalink
fmt and fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jr1221 committed Dec 20, 2024
1 parent d05ad96 commit 156a88d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scylla-server/src/controllers/file_insertion_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub async fn insert_file(
}
// if this is the last item in the list
None => {
run_rng.insert(it.1..=std::u64::MAX, it.0);
run_rng.insert(it.1..=u64::MAX, it.0);
continue;
}
}
Expand Down
2 changes: 1 addition & 1 deletion scylla-server/src/controllers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ pub mod data_controller;
pub mod data_type_controller;
pub mod run_controller;

pub mod file_insertion_controller;
pub mod file_insertion_controller;
2 changes: 1 addition & 1 deletion scylla-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ pub mod models;
pub mod schema;

pub mod command_data;
pub mod serverdata;
pub mod playback_data;
pub mod serverdata;

pub mod transformers;

Expand Down

0 comments on commit 156a88d

Please sign in to comment.