Use consistent 'Registry' prefix for wheel and source distribution logs (#11270)

## Summary

We say "Registry requirement already cached" for source distributions,
but for wheels, it's just "Requirement already cached".
This commit is contained in:
Charlie Marsh 2025-02-05 20:35:11 -05:00 committed by GitHub
parent ca73c47543
commit 306fcfe718
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,8 +131,7 @@ impl<'a> Planner<'a> {
} }
Some(&entry.dist) Some(&entry.dist)
}) { }) {
debug!("Requirement already cached: {distribution}"); debug!("Registry requirement already cached: {distribution}");
// STOPSHIP(charlie): If these are mismatched, skip and warn.
cached.push(CachedDist::Registry(distribution.clone())); cached.push(CachedDist::Registry(distribution.clone()));
continue; continue;
} }