Jack Sundberg
03/05/2021, 2:22 AMfuture = CustomExecutor(flow.run, *my_args, **my_kwargs)
working just fine. The issue comes when I try flow.executor = CustomExecutor(); state = flow.run()
. When I do this with, I recieve...
Unexpected error occured in FlowRunner: AttributeError("'CustomFuture' object has no attribute 'is_mapped'")
I read through the FlowRunner code and have a good guess as to what's happening, but I could use some insight from a dev. Has anyone seen this before?Chris White
wait
method. This will probably be tricky to track down right now because most of our executor logic for delayed objects is built on the assumptions that Dask satisfies (e.g., dask will resolve futures implicitly without requiring an explicit wait
call sometimes)Jack Sundberg
03/05/2021, 2:31 AMJack Sundberg
03/05/2021, 2:32 AMJack Sundberg
03/05/2021, 2:35 AMChris White
Jack Sundberg
03/05/2021, 3:00 AMChris White