From 75547033d98a31f1f08657e288dfb14552e78692 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sun, 26 Nov 2023 19:11:52 +0200 Subject: [PATCH] Watcher - Don't call `stop()` on the `Manager` when exiting the loop --- source/tristanable/manager/watcher.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tristanable/manager/watcher.d b/source/tristanable/manager/watcher.d index 6501826..624e015 100644 --- a/source/tristanable/manager/watcher.d +++ b/source/tristanable/manager/watcher.d @@ -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(); } /**