Robust Client.close()
, no client/solver/future reuse after close
#217
Milestone
Client.close()
, no client/solver/future reuse after close
#217
After
Client.close()
:immediately if user doesn't want to wait for results (which they are now too, but in a blocking manner)(with timeout/shutdown error ifClient.close(wait=False)
)EDIT: for consistency with
ThreadPoolExecutor.shutdown()
, we're not implementing "immediate close" option. We could supportwait=False
behavior, but for little benefit -- all jobs/workers would need to finish either way, the difference would only be inclose()
returning immediately or not. The program wouldn't finish (exit would block) until all workers finished.The text was updated successfully, but these errors were encountered: