forked from goodboy/tractor
1
0
Fork 0

Always cast arbiter addr to tuple

prehardkill
Tyler Goodlet 2021-06-11 16:21:26 -04:00
parent 6c2e0630cd
commit 2d36cf478d
1 changed files with 10 additions and 2 deletions

View File

@ -279,7 +279,7 @@ class Actor:
# TODO: consider making this a dynamically defined
# @dataclass once we get py3.7
self.loglevel = loglevel
self._arb_addr = tuple(arbiter_addr) if arbiter_addr is not None else None
self._arb_addr = tuple(arbiter_addr) if arbiter_addr is not None else (None, None)
# marked by the process spawning backend at startup
# will be None for the parent most process started manually
@ -691,7 +691,15 @@ class Actor:
_state._runtime_vars.update(rvs)
for attr, value in parent_data.items():
setattr(self, attr, value)
if attr == '_arb_addr':
# XXX: msgspec doesn't support serializing tuples
# so just cash manually here since it's what our
# internals expect.
self._arb_addr = tuple(value)
else:
setattr(self, attr, value)
# Disable sigint handling in children if NOT running in
# debug mode; we shouldn't need it thanks to our