mirror of
https://github.com/NixOS/nix
synced 2025-07-07 06:01:48 +02:00
libstore/worker.cc: Remove outdated comment
It was added above this conditional
Worker::Worker(LocalStore & store)
: store(store)
{
/* Debugging: prevent recursive workers. */
if (working) abort();
working = true;
However, `working` has since been removed.
Source: 7f8e805c8e/src/libstore/build.cc (L2617)
This commit is contained in:
parent
052f1320dd
commit
fd0b376c79
1 changed files with 0 additions and 1 deletions
|
@ -19,7 +19,6 @@ Worker::Worker(Store & store, Store & evalStore)
|
||||||
, store(store)
|
, store(store)
|
||||||
, evalStore(evalStore)
|
, evalStore(evalStore)
|
||||||
{
|
{
|
||||||
/* Debugging: prevent recursive workers. */
|
|
||||||
nrLocalBuilds = 0;
|
nrLocalBuilds = 0;
|
||||||
nrSubstitutions = 0;
|
nrSubstitutions = 0;
|
||||||
lastWokenUp = steady_time_point::min();
|
lastWokenUp = steady_time_point::min();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue