forked from goodboy/tractor
Drop uneeded parent cs cancel
parent
47074209a1
commit
9db4324796
|
@ -105,7 +105,10 @@ async def _main(
|
||||||
else:
|
else:
|
||||||
# start this local actor as the arbiter
|
# start this local actor as the arbiter
|
||||||
actor = Arbiter(
|
actor = Arbiter(
|
||||||
name or 'arbiter', arbiter_addr=arbiter_addr, **kwargs)
|
name or 'arbiter',
|
||||||
|
arbiter_addr=arbiter_addr,
|
||||||
|
**kwargs
|
||||||
|
)
|
||||||
|
|
||||||
# ``Actor._async_main()`` creates an internal nursery if one is not
|
# ``Actor._async_main()`` creates an internal nursery if one is not
|
||||||
# provided and thus blocks here until it's main task completes.
|
# provided and thus blocks here until it's main task completes.
|
||||||
|
|
Loading…
Reference in New Issue