Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
KGrewal1 committed Dec 12, 2024
1 parent 99459d8 commit b246055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nativelink-store/src/filesystem_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ async fn add_files_to_cache<Fe: FileEntry>(
block_size: u64,
) -> Result<(), Error> {
#[expect(clippy::too_many_arguments)]
async fn process_entry_alt<Fe: FileEntry>(
async fn process_entry<Fe: FileEntry>(
evicting_map: &EvictingMap<StoreKeyBorrow, Arc<Fe>, SystemTime>,
file_name: &str,
file_type: FileType,
Expand Down Expand Up @@ -538,7 +538,7 @@ async fn add_files_to_cache<Fe: FileEntry>(
file_infos.sort_by(|a, b| a.2.cmp(&b.2));

for (file_name, file_type, atime, data_size) in file_infos {
let result = process_entry_alt(
let result = process_entry(
evicting_map,
&file_name,
file_type,
Expand Down

0 comments on commit b246055

Please sign in to comment.