Drop upcoming cached feed usage
parent
6891309abd
commit
2b7cecc78e
|
@ -136,8 +136,6 @@ async def spawn_brokerd(
|
||||||
**tractor_kwargs
|
**tractor_kwargs
|
||||||
) -> tractor._portal.Portal:
|
) -> tractor._portal.Portal:
|
||||||
|
|
||||||
from .data import _setup_persistent_feeds
|
|
||||||
|
|
||||||
log.info(f'Spawning {brokername} broker daemon')
|
log.info(f'Spawning {brokername} broker daemon')
|
||||||
|
|
||||||
brokermod = get_brokermod(brokername)
|
brokermod = get_brokermod(brokername)
|
||||||
|
@ -156,21 +154,6 @@ async def spawn_brokerd(
|
||||||
**tractor_kwargs
|
**tractor_kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
# TODO: so i think this is the perfect use case for supporting
|
|
||||||
# a cross-actor async context manager api instead of this
|
|
||||||
# shoort-and-forget task spawned in the root nursery, we'd have an
|
|
||||||
# async exit stack that we'd register the `portal.open_context()`
|
|
||||||
# call with and then have the ability to unwind the call whenevs.
|
|
||||||
|
|
||||||
# non-blocking setup of brokerd service nursery
|
|
||||||
_services.service_n.start_soon(
|
|
||||||
partial(
|
|
||||||
portal.run,
|
|
||||||
_setup_persistent_feeds,
|
|
||||||
brokername=brokername,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
return dname
|
return dname
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue