secrets/subscriber don't depend on the services we're watching
this means a watched service can stop and start without killing the subscriber, and that we can watch for services that don't yet exist
This commit is contained in:
parent
d1f87a56e0
commit
d4e46dbe28
@ -56,8 +56,5 @@ service.overrideAttrs (o: {
|
|||||||
buildInputs = (lim.orEmpty o.buildInputs) ++ optional (watch != []) watcher;
|
buildInputs = (lim.orEmpty o.buildInputs) ++ optional (watch != []) watcher;
|
||||||
dependencies =
|
dependencies =
|
||||||
(lim.orEmpty o.dependencies)
|
(lim.orEmpty o.dependencies)
|
||||||
# ++ optionals
|
++ optional (watch != []) watcher;
|
||||||
# (watch != [])
|
|
||||||
# ([ watcher ] ++ watched-services);
|
|
||||||
;
|
|
||||||
})
|
})
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
|
|
||||||
(fn open-services [output-references]
|
(fn open-services [output-references]
|
||||||
(collect [s p (pairs output-references)]
|
(collect [s p (pairs output-references)]
|
||||||
(values (assert (svc.open (.. s "/.outputs"))) p)))
|
(values (svc.open (.. s "/.outputs")) p)))
|
||||||
|
|
||||||
(fn run []
|
(fn run []
|
||||||
(let [trees {}
|
(let [trees {}
|
||||||
@ -89,7 +89,6 @@
|
|||||||
(each [service paths (pairs services)]
|
(each [service paths (pairs services)]
|
||||||
(let [new-tree (service:output ".")]
|
(let [new-tree (service:output ".")]
|
||||||
(when (changed? paths (. trees service) new-tree)
|
(when (changed? paths (. trees service) new-tree)
|
||||||
(print "watched path event:" action controlled-service)
|
|
||||||
(do-action action controlled-service))))))))
|
(do-action action controlled-service))))))))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user