Add `maybe_enable_greenback: bool` flag to `open_root_actor()`

runtime_to_msgspec
Tyler Goodlet 2024-04-14 18:36:22 -04:00
parent 38a6483859
commit 921f72f7fe
1 changed files with 3 additions and 2 deletions

View File

@ -79,6 +79,7 @@ async def open_root_actor(
# enables the multi-process debugger support
debug_mode: bool = False,
maybe_enable_greenback: bool = False, # `.pause_from_sync()/breakpoint()` support
# internal logging
loglevel: str|None = None,
@ -107,8 +108,8 @@ async def open_root_actor(
)
if (
debug_mode
and
await _debug.maybe_init_greenback(
and maybe_enable_greenback
and await _debug.maybe_init_greenback(
raise_not_found=False,
)
):