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

Merge remote-tracking branch 'layered-store/experimental-stores' into overlayfs-store

This commit is contained in:
John Ericson 2023-08-02 19:03:34 -04:00
commit 3fc838c8a8
4 changed files with 39 additions and 4 deletions

View file

@ -1499,6 +1499,7 @@ ref<Store> openStore(const std::string & uri_,
if (implem.uriSchemes.count(parsedUri.scheme)) {
auto store = implem.create(parsedUri.scheme, baseURI, params);
if (store) {
experimentalFeatureSettings.require(store->experimentalFeature());
store->init();
store->warnUnknownSettings();
return ref<Store>(store);