- Don't call `stop()` on the `Manager` when exiting the loop
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-26 19:11:52 +02:00
parent 169f47dd8d
commit 75547033d9
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ public class Watcher : Thread
// TODO: Unblock all `dequeue()`'s here
// TODO: Get a reason for exiting (either cause of error OR shutdoiwn (see below (which in turn is called by the Manager)))
version(unittest) { writeln("Exited watcher loop"); }
this.manager.stop();
// this.manager.stop();
}
/**