Fork me on GitHub
#mount
<
2018-09-11
>
tolitius18:09:49

@kanwei what are you trying to do? i.e. in case you need to start "something" after everything is up, you can start everything except "that something", and then start "that something"

tolitius18:09:36

(-> (mount/except [#'foo/c
                   #'bar/d])
    mount/start)

(mount/start)
or
(-> (mount/only #{#'foo/a
                  #'foo/b
                  #'baz/c})
    (mount/except [#'foo/d])
    mount/start)

(mount/start #'foo/d)

kanwei18:09:51

@tolitius thanks, it turned out to be a threading issue instead

kanwei18:09:10

we were trying to run a bunch of tests but the runner we used was creating a new thread

tolitius19:09:47

ah, k. good it is resolved