Skip to content

Commit ee2fe0f

Browse files
committed
fixup
1 parent 7a77d3a commit ee2fe0f

File tree

1 file changed

+2
-2
lines changed
  • turbopack/crates/turbo-persistence/src

1 file changed

+2
-2
lines changed

turbopack/crates/turbo-persistence/src/db.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>
10031003
if current.key != entry.key {
10041004
let is_used = used_key_hashes[family as usize]
10051005
.iter()
1006-
.any(|amqf| amqf.contains(current.hash));
1006+
.any(|amqf| amqf.contains_fingerprint(current.hash));
10071007
let collector = if is_used {
10081008
&mut used_collector
10091009
} else {
@@ -1059,7 +1059,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>
10591059
if let Some(entry) = current {
10601060
let is_used = used_key_hashes[family as usize]
10611061
.iter()
1062-
.any(|amqf| amqf.contains(entry.hash));
1062+
.any(|amqf| amqf.contains_fingerprint(entry.hash));
10631063
let collector = if is_used {
10641064
&mut used_collector
10651065
} else {

0 commit comments

Comments
 (0)