Merge pull request #10055 from GrahamDennis/gdennis/faster-flake-lock-parsing

Faster flake.lock parsing
This commit is contained in:
Eelco Dolstra 2024-02-21 11:57:44 +01:00 committed by GitHub
commit ff4fa4dbd3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,7 @@ LockFile::LockFile(const nlohmann::json & json, const Path & path)
std::string inputKey = i.value();
auto k = nodeMap.find(inputKey);
if (k == nodeMap.end()) {
auto nodes = json["nodes"];
auto & nodes = json["nodes"];
auto jsonNode2 = nodes.find(inputKey);
if (jsonNode2 == nodes.end())
throw Error("lock file references missing node '%s'", inputKey);