File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -382,12 +382,7 @@ Goal::Co DerivationGoal::gaveUpOnSubstitution()
382382 }
383383
384384 if (!waitees.empty ()) co_await Suspend{}; /* to prevent hang (no wake-up event) */
385- co_return inputsRealised ();
386- }
387-
388385
389- Goal::Co DerivationGoal::inputsRealised ()
390- {
391386 trace (" all inputs realised" );
392387
393388 if (nrFailed != 0 ) {
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ struct DerivationGoal : public Goal
8080 /* *
8181 * Mapping from input derivations + output names to actual store
8282 * paths. This is filled in by waiteeDone() as each dependency
83- * finishes, before inputsRealised() is reached.
83+ * finishes, before `trace("all inputs realised")` is reached.
8484 */
8585 std::map<std::pair<StorePath, std::string>, StorePath> inputDrvOutputs;
8686
@@ -235,7 +235,6 @@ struct DerivationGoal : public Goal
235235 Co init () override ;
236236 Co haveDerivation ();
237237 Co gaveUpOnSubstitution ();
238- Co inputsRealised ();
239238 Co tryToBuild ();
240239 virtual Co tryLocalBuild ();
241240 Co buildDone ();
You can’t perform that action at this time.
0 commit comments