forked from goodboy/tractor
1
0
Fork 0

Drop uneeded parent cs cancel

advanced_debugger_testing
Tyler Goodlet 2020-07-30 09:38:19 -04:00
parent e830862181
commit f174aaf7d8
1 changed files with 4 additions and 1 deletions

View File

@ -112,7 +112,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.