1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

libstore: Make all StoreConfig::getReference implementations return store parameters

These stragglers have been accidentally left out when implementing the StoreConfig::getReference.
Also HttpBinaryCacheStore::getReference now returns the actual store parameters, not the cacheUri
parameters.
This commit is contained in:
Sergei Zimmerman 2025-09-28 16:29:12 +03:00
parent 3bf1268ac6
commit 426a72c9cf
No known key found for this signature in database
6 changed files with 44 additions and 2 deletions

View file

@ -262,6 +262,7 @@ StoreReference S3BinaryCacheStoreConfig::getReference() const
.scheme = *uriSchemes().begin(),
.authority = bucketName,
},
.params = getQueryParams(),
};
}