1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-11 11:31:03 +01:00

Merge pull request #13420 from NixOS/query-missing

Introduce MissingPaths struct for queryMissing() / printMissing()
This commit is contained in:
Robert Hensing 2025-07-07 11:48:06 +02:00 committed by GitHub
commit c512fd1a4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 78 additions and 100 deletions

View file

@ -324,9 +324,7 @@ void Worker::run(const Goals & _topGoals)
}
/* Call queryMissing() to efficiently query substitutes. */
StorePathSet willBuild, willSubstitute, unknown;
uint64_t downloadSize, narSize;
store.queryMissing(topPaths, willBuild, willSubstitute, unknown, downloadSize, narSize);
store.queryMissing(topPaths);
debug("entered goal loop");