Fix `nest_from_op()` call sigs, already changed upstream
In `._runtime/_root` and since the latest fn-signature changes were already landed onto main branch via the 65b7956: #384-patch.to_asyncio_eoc_signal
parent
547cf5a210
commit
e9f2fecd66
|
@ -521,7 +521,7 @@ async def open_root_actor(
|
||||||
|
|
||||||
op_nested_actor_repr: str = _pformat.nest_from_op(
|
op_nested_actor_repr: str = _pformat.nest_from_op(
|
||||||
input_op='>) ',
|
input_op='>) ',
|
||||||
tree_str=actor.pformat(),
|
text=actor.pformat(),
|
||||||
nest_prefix='|_',
|
nest_prefix='|_',
|
||||||
)
|
)
|
||||||
logger.info(
|
logger.info(
|
||||||
|
|
|
@ -1690,9 +1690,9 @@ async def async_main(
|
||||||
|
|
||||||
op_nested_actor_repr: str = _pformat.nest_from_op(
|
op_nested_actor_repr: str = _pformat.nest_from_op(
|
||||||
input_op=')> ',
|
input_op=')> ',
|
||||||
tree_str=actor.pformat(),
|
text=actor.pformat(),
|
||||||
nest_prefix='|_',
|
nest_prefix='|_',
|
||||||
back_from_op=2,
|
nest_indent=2,
|
||||||
)
|
)
|
||||||
teardown_report += (
|
teardown_report += (
|
||||||
'Actor runtime exited\n'
|
'Actor runtime exited\n'
|
||||||
|
|
Loading…
Reference in New Issue