2018-06-07 04:29:17 +00:00
|
|
|
"""
|
|
|
|
Actor model API testing
|
|
|
|
"""
|
2018-06-12 19:23:58 +00:00
|
|
|
import time
|
2018-07-10 21:19:54 +00:00
|
|
|
from functools import partial, wraps
|
2018-07-11 23:24:37 +00:00
|
|
|
from itertools import repeat
|
2018-07-10 21:19:54 +00:00
|
|
|
import random
|
2018-06-12 19:23:58 +00:00
|
|
|
|
2018-06-07 04:29:17 +00:00
|
|
|
import pytest
|
2018-06-12 19:23:58 +00:00
|
|
|
import trio
|
2018-07-05 23:49:21 +00:00
|
|
|
import tractor
|
2018-06-07 04:29:17 +00:00
|
|
|
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
_arb_addr = '127.0.0.1', random.randint(1000, 9999)
|
|
|
|
|
|
|
|
|
|
|
|
def tractor_test(fn):
|
|
|
|
"""
|
|
|
|
Use:
|
|
|
|
|
|
|
|
@tractor_test
|
|
|
|
async def test_whatever():
|
|
|
|
await ...
|
|
|
|
"""
|
|
|
|
@wraps(fn)
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
__tracebackhide__ = True
|
|
|
|
return tractor.run(
|
|
|
|
partial(fn, *args), arbiter_addr=_arb_addr, **kwargs)
|
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
@pytest.mark.trio
|
|
|
|
async def test_no_arbitter():
|
|
|
|
"""An arbitter must be established before any nurseries
|
|
|
|
can be created.
|
|
|
|
|
|
|
|
(In other words ``tractor.run`` must be used instead of ``trio.run`` as is
|
|
|
|
done by the ``pytest-trio`` plugin.)
|
|
|
|
"""
|
|
|
|
with pytest.raises(RuntimeError):
|
2018-06-19 15:49:25 +00:00
|
|
|
with tractor.open_nursery():
|
2018-06-12 19:23:58 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2018-06-19 15:49:25 +00:00
|
|
|
def test_local_actor_async_func():
|
2018-06-12 19:23:58 +00:00
|
|
|
"""Verify a simple async function in-process.
|
|
|
|
"""
|
2018-06-19 15:49:25 +00:00
|
|
|
nums = []
|
|
|
|
|
|
|
|
async def print_loop():
|
|
|
|
# arbiter is started in-proc if dne
|
|
|
|
assert tractor.current_actor().is_arbiter
|
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
for i in range(10):
|
2018-06-19 15:49:25 +00:00
|
|
|
nums.append(i)
|
2018-06-12 19:23:58 +00:00
|
|
|
await trio.sleep(0.1)
|
|
|
|
|
|
|
|
start = time.time()
|
2018-07-10 21:19:54 +00:00
|
|
|
tractor.run(print_loop, arbiter_addr=_arb_addr)
|
2018-06-19 15:49:25 +00:00
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
# ensure the sleeps were actually awaited
|
|
|
|
assert time.time() - start >= 1
|
2018-06-19 15:49:25 +00:00
|
|
|
assert nums == list(range(10))
|
|
|
|
|
|
|
|
|
2018-07-11 23:24:37 +00:00
|
|
|
statespace = {'doggy': 10, 'kitty': 4}
|
|
|
|
|
|
|
|
|
2018-06-19 15:49:25 +00:00
|
|
|
# NOTE: this func must be defined at module level in order for the
|
|
|
|
# interal pickling infra of the forkserver to work
|
|
|
|
async def spawn(is_arbiter):
|
2018-07-06 06:45:26 +00:00
|
|
|
namespaces = [__name__]
|
2018-06-19 15:49:25 +00:00
|
|
|
|
|
|
|
await trio.sleep(0.1)
|
|
|
|
actor = tractor.current_actor()
|
|
|
|
assert actor.is_arbiter == is_arbiter
|
2018-06-27 15:45:21 +00:00
|
|
|
assert actor.statespace == statespace
|
2018-06-19 15:49:25 +00:00
|
|
|
|
|
|
|
if actor.is_arbiter:
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
# forks here
|
2018-08-02 19:27:09 +00:00
|
|
|
portal = await nursery.run_in_actor(
|
2018-06-19 15:49:25 +00:00
|
|
|
'sub-actor',
|
2018-08-02 19:27:09 +00:00
|
|
|
spawn,
|
|
|
|
is_arbiter=False,
|
2018-06-19 15:49:25 +00:00
|
|
|
statespace=statespace,
|
|
|
|
rpc_module_paths=namespaces,
|
|
|
|
)
|
2018-08-02 19:27:09 +00:00
|
|
|
|
2018-06-19 15:49:25 +00:00
|
|
|
assert len(nursery._children) == 1
|
2018-07-05 19:33:02 +00:00
|
|
|
assert portal.channel.uid in tractor.current_actor()._peers
|
2018-07-08 02:22:05 +00:00
|
|
|
# be sure we can still get the result
|
2018-07-06 06:45:26 +00:00
|
|
|
result = await portal.result()
|
|
|
|
assert result == 10
|
|
|
|
return result
|
2018-06-19 15:49:25 +00:00
|
|
|
else:
|
|
|
|
return 10
|
|
|
|
|
|
|
|
|
|
|
|
def test_local_arbiter_subactor_global_state():
|
2018-07-06 06:45:26 +00:00
|
|
|
result = tractor.run(
|
2018-06-19 15:49:25 +00:00
|
|
|
spawn,
|
|
|
|
True,
|
|
|
|
name='arbiter',
|
|
|
|
statespace=statespace,
|
2018-07-10 21:19:54 +00:00
|
|
|
arbiter_addr=_arb_addr,
|
2018-06-19 15:49:25 +00:00
|
|
|
)
|
2018-07-06 06:45:26 +00:00
|
|
|
assert result == 10
|
|
|
|
|
2018-06-12 19:23:58 +00:00
|
|
|
|
2018-07-06 06:45:26 +00:00
|
|
|
async def stream_seq(sequence):
|
|
|
|
for i in sequence:
|
|
|
|
yield i
|
|
|
|
await trio.sleep(0.1)
|
2018-06-12 19:23:58 +00:00
|
|
|
|
2018-07-06 06:45:26 +00:00
|
|
|
|
|
|
|
async def stream_from_single_subactor():
|
|
|
|
"""Verify we can spawn a daemon actor and retrieve streamed data.
|
2018-06-07 04:29:17 +00:00
|
|
|
"""
|
2018-06-12 19:23:58 +00:00
|
|
|
async with tractor.find_actor('brokerd') as portals:
|
2018-06-19 15:49:25 +00:00
|
|
|
if not portals:
|
2018-06-12 19:23:58 +00:00
|
|
|
# only one per host address, spawns an actor if None
|
2018-06-19 15:49:25 +00:00
|
|
|
async with tractor.open_nursery() as nursery:
|
2018-06-07 04:29:17 +00:00
|
|
|
# no brokerd actor found
|
|
|
|
portal = await nursery.start_actor(
|
2018-07-06 06:45:26 +00:00
|
|
|
'streamerd',
|
|
|
|
rpc_module_paths=[__name__],
|
|
|
|
statespace={'global_dict': {}},
|
2018-06-07 04:29:17 +00:00
|
|
|
)
|
|
|
|
|
2018-07-06 06:45:26 +00:00
|
|
|
seq = range(10)
|
2018-06-19 15:49:25 +00:00
|
|
|
|
2018-07-08 02:22:05 +00:00
|
|
|
agen = await portal.run(
|
2018-07-06 06:45:26 +00:00
|
|
|
__name__,
|
|
|
|
'stream_seq', # the func above
|
|
|
|
sequence=list(seq), # has to be msgpack serializable
|
2018-06-19 15:49:25 +00:00
|
|
|
)
|
|
|
|
# it'd sure be nice to have an asyncitertools here...
|
2018-07-06 06:45:26 +00:00
|
|
|
iseq = iter(seq)
|
2018-07-08 02:22:05 +00:00
|
|
|
async for val in agen:
|
2018-07-06 06:45:26 +00:00
|
|
|
assert val == next(iseq)
|
2018-07-08 02:22:05 +00:00
|
|
|
# TODO: test breaking the loop (should it kill the
|
|
|
|
# far end?)
|
|
|
|
# break
|
2018-06-19 15:49:25 +00:00
|
|
|
# terminate far-end async-gen
|
|
|
|
# await gen.asend(None)
|
|
|
|
# break
|
|
|
|
|
|
|
|
# stop all spawned subactors
|
2018-07-08 02:22:05 +00:00
|
|
|
await portal.cancel_actor()
|
|
|
|
# await nursery.cancel()
|
2018-06-19 15:49:25 +00:00
|
|
|
|
2018-07-05 19:33:02 +00:00
|
|
|
|
2018-07-08 02:22:05 +00:00
|
|
|
def test_stream_from_single_subactor():
|
2018-07-06 06:45:26 +00:00
|
|
|
"""Verify streaming from a spawned async generator.
|
|
|
|
"""
|
2018-07-10 21:19:54 +00:00
|
|
|
tractor.run(stream_from_single_subactor, arbiter_addr=_arb_addr)
|
2018-07-06 06:45:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def assert_err():
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_remote_error():
|
|
|
|
"""Verify an error raises in a subactor is propagated to the parent.
|
|
|
|
"""
|
|
|
|
async def main():
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
|
2018-08-02 19:27:09 +00:00
|
|
|
portal = await nursery.run_in_actor('errorer', assert_err)
|
2018-07-06 06:45:26 +00:00
|
|
|
|
|
|
|
# get result(s) from main task
|
|
|
|
try:
|
|
|
|
return await portal.result()
|
|
|
|
except tractor.RemoteActorError:
|
2018-07-08 02:22:05 +00:00
|
|
|
print("Look Maa that actor failed hard, hehh")
|
2018-07-06 06:45:26 +00:00
|
|
|
raise
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
assert 0, "Remote error was not raised?"
|
|
|
|
|
|
|
|
with pytest.raises(tractor.RemoteActorError):
|
2018-07-08 02:22:05 +00:00
|
|
|
# also raises
|
2018-07-10 21:19:54 +00:00
|
|
|
tractor.run(main, arbiter_addr=_arb_addr)
|
|
|
|
|
|
|
|
|
2018-07-11 23:24:37 +00:00
|
|
|
async def stream_forever():
|
|
|
|
for i in repeat("I can see these little future bubble things"):
|
|
|
|
yield i
|
|
|
|
await trio.sleep(0.01)
|
|
|
|
|
|
|
|
|
|
|
|
@tractor_test
|
|
|
|
async def test_cancel_infinite_streamer():
|
|
|
|
|
|
|
|
# stream for at most 5 seconds
|
|
|
|
with trio.move_on_after(1) as cancel_scope:
|
|
|
|
async with tractor.open_nursery() as n:
|
|
|
|
portal = await n.start_actor(
|
|
|
|
f'donny',
|
|
|
|
rpc_module_paths=[__name__],
|
|
|
|
)
|
|
|
|
async for letter in await portal.run(__name__, 'stream_forever'):
|
|
|
|
print(letter)
|
|
|
|
|
|
|
|
assert cancel_scope.cancelled_caught
|
|
|
|
assert n.cancelled
|
|
|
|
|
|
|
|
|
2018-07-11 20:56:22 +00:00
|
|
|
@tractor_test
|
|
|
|
async def test_one_cancels_all():
|
|
|
|
"""Verify one failed actor causes all others in the nursery
|
|
|
|
to be cancelled just like in trio.
|
|
|
|
|
|
|
|
This is the first and only supervisory strategy at the moment.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
async with tractor.open_nursery() as n:
|
|
|
|
real_actors = []
|
|
|
|
for i in range(3):
|
|
|
|
real_actors.append(await n.start_actor(
|
|
|
|
f'actor_{i}',
|
|
|
|
rpc_module_paths=[__name__],
|
|
|
|
))
|
|
|
|
|
|
|
|
# start one actor that will fail immediately
|
2018-08-02 19:27:09 +00:00
|
|
|
await n.run_in_actor('extra', assert_err)
|
2018-07-11 20:56:22 +00:00
|
|
|
|
|
|
|
# should error here with a ``RemoteActorError`` containing
|
|
|
|
# an ``AssertionError`
|
|
|
|
|
|
|
|
except tractor.RemoteActorError:
|
|
|
|
assert n.cancelled is True
|
2018-08-02 19:27:09 +00:00
|
|
|
assert not n._children
|
2018-07-11 20:56:22 +00:00
|
|
|
else:
|
|
|
|
pytest.fail("Should have gotten a remote assertion error?")
|
|
|
|
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
the_line = 'Hi my name is {}'
|
|
|
|
|
|
|
|
|
|
|
|
async def hi():
|
|
|
|
return the_line.format(tractor.current_actor().name)
|
|
|
|
|
|
|
|
|
|
|
|
async def say_hello(other_actor):
|
|
|
|
await trio.sleep(0.4) # wait for other actor to spawn
|
|
|
|
async with tractor.find_actor(other_actor) as portal:
|
|
|
|
return await portal.run(__name__, 'hi')
|
|
|
|
|
|
|
|
|
|
|
|
@tractor_test
|
|
|
|
async def test_trynamic_trio():
|
|
|
|
"""Main tractor entry point, the "master" process (for now
|
|
|
|
acts as the "director").
|
|
|
|
"""
|
|
|
|
async with tractor.open_nursery() as n:
|
|
|
|
print("Alright... Action!")
|
|
|
|
|
2018-08-02 19:27:09 +00:00
|
|
|
donny = await n.run_in_actor(
|
2018-07-10 21:19:54 +00:00
|
|
|
'donny',
|
2018-08-02 19:27:09 +00:00
|
|
|
say_hello,
|
|
|
|
other_actor='gretchen',
|
2018-07-10 21:19:54 +00:00
|
|
|
)
|
2018-08-02 19:27:09 +00:00
|
|
|
gretchen = await n.run_in_actor(
|
2018-07-10 21:19:54 +00:00
|
|
|
'gretchen',
|
2018-08-02 19:27:09 +00:00
|
|
|
say_hello,
|
|
|
|
other_actor='donny',
|
2018-07-10 21:19:54 +00:00
|
|
|
)
|
|
|
|
print(await gretchen.result())
|
|
|
|
print(await donny.result())
|
|
|
|
await donny.cancel_actor()
|
|
|
|
print("CUTTTT CUUTT CUT!!?! Donny!! You're supposed to say...")
|
|
|
|
|
|
|
|
|
|
|
|
def movie_theatre_question():
|
|
|
|
"""A question asked in a dark theatre, in a tangent
|
|
|
|
(errr, I mean different) process.
|
|
|
|
"""
|
|
|
|
return 'have you ever seen a portal?'
|
|
|
|
|
|
|
|
|
|
|
|
@tractor_test
|
|
|
|
async def test_movie_theatre_convo():
|
|
|
|
"""The main ``tractor`` routine.
|
|
|
|
"""
|
|
|
|
async with tractor.open_nursery() as n:
|
|
|
|
portal = await n.start_actor(
|
|
|
|
'frank',
|
|
|
|
# enable the actor to run funcs from this current module
|
|
|
|
rpc_module_paths=[__name__],
|
|
|
|
)
|
|
|
|
|
|
|
|
print(await portal.run(__name__, 'movie_theatre_question'))
|
|
|
|
# calls the subactor a 2nd time
|
|
|
|
print(await portal.run(__name__, 'movie_theatre_question'))
|
|
|
|
|
|
|
|
# the async with will block here indefinitely waiting
|
2018-08-02 19:27:09 +00:00
|
|
|
# for our actor "frank" to complete, we cancel 'frank'
|
|
|
|
# to avoid blocking indefinitely
|
2018-07-10 21:19:54 +00:00
|
|
|
await portal.cancel_actor()
|
|
|
|
|
|
|
|
|
2018-07-11 04:32:03 +00:00
|
|
|
@tractor_test
|
|
|
|
async def test_movie_theatre_convo_main_task():
|
|
|
|
async with tractor.open_nursery() as n:
|
2018-08-02 19:27:09 +00:00
|
|
|
portal = await n.run_in_actor('frank', movie_theatre_question)
|
2018-07-11 04:32:03 +00:00
|
|
|
|
2018-08-02 19:27:09 +00:00
|
|
|
# The ``async with`` will unblock here since the 'frank'
|
|
|
|
# actor has completed its main task ``movie_theatre_question()``.
|
2018-07-11 04:32:03 +00:00
|
|
|
|
|
|
|
print(await portal.result())
|
|
|
|
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
def cellar_door():
|
|
|
|
return "Dang that's beautiful"
|
|
|
|
|
|
|
|
|
|
|
|
@tractor_test
|
|
|
|
async def test_most_beautiful_word():
|
|
|
|
"""The main ``tractor`` routine.
|
|
|
|
"""
|
|
|
|
async with tractor.open_nursery() as n:
|
2018-08-02 19:27:09 +00:00
|
|
|
portal = await n.run_in_actor('some_linguist', cellar_door)
|
2018-07-10 21:19:54 +00:00
|
|
|
|
|
|
|
# The ``async with`` will unblock here since the 'some_linguist'
|
|
|
|
# actor has completed its main task ``cellar_door``.
|
|
|
|
|
|
|
|
print(await portal.result())
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
def do_nothing():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def test_cancel_single_subactor():
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
|
|
|
|
portal = await nursery.start_actor(
|
|
|
|
'nothin', rpc_module_paths=[__name__],
|
|
|
|
)
|
2018-07-10 21:19:54 +00:00
|
|
|
assert (await portal.run(__name__, 'do_nothing')) is None
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
# would hang otherwise
|
|
|
|
await nursery.cancel()
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
tractor.run(main, arbiter_addr=_arb_addr)
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def stream_data(seed):
|
|
|
|
for i in range(seed):
|
|
|
|
yield i
|
|
|
|
await trio.sleep(0) # trigger scheduler
|
|
|
|
|
|
|
|
|
|
|
|
async def aggregate(seed):
|
|
|
|
"""Ensure that the two streams we receive match but only stream
|
|
|
|
a single set of values to the parent.
|
|
|
|
"""
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
portals = []
|
|
|
|
for i in range(1, 3):
|
|
|
|
# fork point
|
|
|
|
portal = await nursery.start_actor(
|
|
|
|
name=f'streamer_{i}',
|
|
|
|
rpc_module_paths=[__name__],
|
|
|
|
)
|
|
|
|
|
|
|
|
portals.append(portal)
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
q = trio.Queue(500)
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
async def push_to_q(portal):
|
|
|
|
async for value in await portal.run(
|
|
|
|
__name__, 'stream_data', seed=seed
|
|
|
|
):
|
2018-07-11 23:24:08 +00:00
|
|
|
# leverage trio's built-in backpressure
|
2018-07-08 02:22:05 +00:00
|
|
|
await q.put(value)
|
|
|
|
|
|
|
|
await q.put(None)
|
|
|
|
print(f"FINISHED ITERATING {portal.channel.uid}")
|
|
|
|
|
|
|
|
# spawn 2 trio tasks to collect streams and push to a local queue
|
|
|
|
async with trio.open_nursery() as n:
|
|
|
|
for portal in portals:
|
|
|
|
n.start_soon(push_to_q, portal)
|
|
|
|
|
|
|
|
unique_vals = set()
|
|
|
|
async for value in q:
|
|
|
|
if value not in unique_vals:
|
|
|
|
unique_vals.add(value)
|
|
|
|
# yield upwards to the spawning parent actor
|
|
|
|
yield value
|
2018-07-10 21:19:54 +00:00
|
|
|
|
|
|
|
if value is None:
|
|
|
|
break
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
assert value in unique_vals
|
|
|
|
|
|
|
|
print("FINISHED ITERATING in aggregator")
|
|
|
|
|
|
|
|
await nursery.cancel()
|
|
|
|
print("WAITING on `ActorNursery` to finish")
|
|
|
|
print("AGGREGATOR COMPLETE!")
|
|
|
|
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
async def a_quadruple_example():
|
2018-07-08 02:22:05 +00:00
|
|
|
# a nursery which spawns "actors"
|
|
|
|
async with tractor.open_nursery() as nursery:
|
|
|
|
|
2018-07-11 04:32:03 +00:00
|
|
|
seed = int(1e3)
|
2018-07-08 02:22:05 +00:00
|
|
|
pre_start = time.time()
|
2018-07-10 21:19:54 +00:00
|
|
|
|
2018-08-02 19:27:09 +00:00
|
|
|
portal = await nursery.run_in_actor(
|
|
|
|
'aggregator',
|
|
|
|
aggregate,
|
|
|
|
seed=seed,
|
2018-07-08 02:22:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
# the portal call returns exactly what you'd expect
|
|
|
|
# as if the remote "main" function was called locally
|
|
|
|
result_stream = []
|
|
|
|
async for value in await portal.result():
|
|
|
|
result_stream.append(value)
|
|
|
|
|
|
|
|
print(f"STREAM TIME = {time.time() - start}")
|
|
|
|
print(f"STREAM + SPAWN TIME = {time.time() - pre_start}")
|
|
|
|
assert result_stream == list(range(seed)) + [None]
|
2018-07-11 04:32:03 +00:00
|
|
|
return result_stream
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
|
2018-07-10 21:19:54 +00:00
|
|
|
async def cancel_after(wait):
|
|
|
|
with trio.move_on_after(wait):
|
2018-07-11 04:32:03 +00:00
|
|
|
return await a_quadruple_example()
|
2018-07-10 21:19:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_a_quadruple_example():
|
2018-08-02 19:27:09 +00:00
|
|
|
"""This also serves as a kind of "we'd like to eventually be this
|
|
|
|
fast test".
|
2018-07-08 02:22:05 +00:00
|
|
|
"""
|
2018-08-02 19:27:09 +00:00
|
|
|
results = tractor.run(cancel_after, 2.1, arbiter_addr=_arb_addr)
|
2018-07-11 04:32:03 +00:00
|
|
|
assert results
|
2018-07-08 02:22:05 +00:00
|
|
|
|
|
|
|
|
2018-08-02 20:33:42 +00:00
|
|
|
@pytest.mark.parametrize('cancel_delay', list(range(1, 7)))
|
2018-08-02 19:27:09 +00:00
|
|
|
def test_not_fast_enough_quad(cancel_delay):
|
2018-07-10 21:19:54 +00:00
|
|
|
"""Verify we can cancel midway through the quad example and all actors
|
|
|
|
cancel gracefully.
|
2018-07-08 02:22:05 +00:00
|
|
|
"""
|
2018-08-02 19:27:09 +00:00
|
|
|
delay = 1 + cancel_delay/10
|
|
|
|
results = tractor.run(cancel_after, delay, arbiter_addr=_arb_addr)
|
2018-07-11 04:32:03 +00:00
|
|
|
assert results is None
|