forked from goodboy/tractor
Drop lingering rpc_module_paths refs
parent
247483ee93
commit
4798d3b5db
|
@ -182,7 +182,7 @@ Here is a similar example using the latter method:
|
|||
|
||||
.. literalinclude:: ../examples/actor_spawning_and_causality_with_daemon.py
|
||||
|
||||
The ``rpc_module_paths`` `kwarg` above is a list of module path
|
||||
The ``enable_modules`` `kwarg` above is a list of module path
|
||||
strings that will be loaded and made accessible for execution in the
|
||||
remote actor through a call to ``Portal.run()``. For now this is
|
||||
a simple mechanism to restrict the functionality of the remote
|
||||
|
|
|
@ -17,7 +17,7 @@ async def main():
|
|||
portal = await n.start_actor(
|
||||
'frank',
|
||||
# enable the actor to run funcs from this current module
|
||||
rpc_module_paths=[__name__],
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
|
||||
print(await portal.run(movie_theatre_question))
|
||||
|
|
|
@ -22,7 +22,7 @@ async def main():
|
|||
|
||||
portal = await n.start_actor(
|
||||
'donny',
|
||||
rpc_module_paths=[__name__],
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
|
||||
# this async for loop streams values from the above
|
||||
|
|
|
@ -12,7 +12,7 @@ async def main():
|
|||
for i in range(3):
|
||||
real_actors.append(await n.start_actor(
|
||||
f'actor_{i}',
|
||||
rpc_module_paths=[__name__],
|
||||
enable_modules=[__name__],
|
||||
))
|
||||
|
||||
# start one actor that will fail immediately
|
||||
|
|
|
@ -94,7 +94,7 @@ def test_rpc_errors(arb_addr, to_call, testdir):
|
|||
func_name=funcname,
|
||||
exposed_mods=exposed_mods,
|
||||
func_defined=True if func_defined else False,
|
||||
rpc_module_paths=subactor_exposed_mods,
|
||||
enable_modules=subactor_exposed_mods,
|
||||
)
|
||||
|
||||
def run():
|
||||
|
|
Loading…
Reference in New Issue