Remove in-memory locks from distribution database (#11412)

## Summary

I believe these are not necessary... They're currently used in two
places:

1. When building wheels. But that's already wrapped in an in-flight map,
which does the same thing.
2. When fetching source distribution metadata. But every route there
uses it's own `flock` to coordinate across processes, so this seems
redundant?
This commit is contained in:
Charlie Marsh 2025-02-20 20:57:31 -08:00 committed by GitHub
parent b4ba78e53b
commit 6bef1a32b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 31 deletions

View file

@ -14,7 +14,6 @@ mod distribution_database;
mod download;
mod error;
mod index;
mod locks;
mod metadata;
mod reporter;
mod source;