Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to actor list limit to fix issue 803 #814

Open
wants to merge 12 commits into
base: dev
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def operator() -> ActorHandle:
actors = [operator() for _ in range(n_actors)]
for i in range(120):
time.sleep(1)
alive = list_actors(filters=[("class_name", "=", cls_name), ("state", "=", "ALIVE")])
alive = list_actors(filters=[("class_name", "=", cls_name), ("state", "=", "ALIVE")], limit=1000)
daw3rd marked this conversation as resolved.
Show resolved Hide resolved
daw3rd marked this conversation as resolved.
Show resolved Hide resolved
if len(actors) == len(alive):
return actors
# failed - raise an exception
Expand Down
Loading