filed
Job queue using FUSE
git clone git://mccd.space/filed
| Log | Files | Refs | README | LICENSE |
commit 0a5d260e15b789661145c07b950577f6c21bb52a parent 8cff7fd5a86082360056ffc4bfb8a8d2b3529c18 Author: Marc Coquand <marc@coquand.email> Date: Mon, 22 Dec 2025 10:55:34 +0100 Fix manager Diffstat:
| M | manager.go | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/manager.go b/manager.go
@@ -27,7 +27,9 @@ type JobManager struct {
// Command to use for executing jobs in pending
execCmd string
restrictions *RestrictionsArg
- notifyChan chan struct{}
+
+ // Used to notify that a job should be run with JobManager.notify
+ notifyChan chan struct{}
}
type ActiveJob struct {