Adam Lewis
06/09/2021, 2:22 PMcluster.scheduler_address
around, and I'm able to create client to the cluster by running client = Client(scheduler_address)
. I want to be sure I shut down the cluster in an ending task which always runs as I've seen the scheduler stay up sometimes when an error is thrown during the flow, but I can't find a way to do that directly from the client object. I believe I can only shut down the cluster with the original cluster object which I'm not sure how to recover. Have y'all seen this and if so, do you have any suggestions for workarounds?Kevin Kho
client.shutdown()
work for your use case?Adam Lewis
06/09/2021, 2:27 PM