We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a32039 + ee5860f commit d7c2938Copy full SHA for d7c2938
src/libstore/local-store.cc
@@ -1629,6 +1629,10 @@ void LocalStore::queryRealisationUncached(
1629
const DrvOutput & id, Callback<std::shared_ptr<const UnkeyedRealisation>> callback) noexcept
1630
{
1631
try {
1632
+ if (!experimentalFeatureSettings.isEnabled(Xp::CaDerivations)) {
1633
+ callback(nullptr);
1634
+ return;
1635
+ }
1636
auto maybeRealisation = retrySQLite<std::optional<const UnkeyedRealisation>>(
1637
[&]() { return queryRealisation_(*_state->lock(), id); });
1638
if (maybeRealisation)
0 commit comments