@stevieg95
The issue is that, you've run the notebook with old connector connected to your old deleted cluster with same names, when you ran a terminated cluster, you see the error. First delete existing cluster and logout and detach old cluster as below and wait for 90+ minutes and create a new cluster and attached the new one. And every time you run a notebook always make sure to Detach the old terminated cluster and attach the new one if it's community edition. If it's a premium or free trail, and cluster is re-started then detach and re-attach the cluster.
The error you are facing is due to not detaching the old cluster, which is terminated/auto-terminated and when you run a cluster that connected to new cluster with same name and config. Which notebook tries to connect to old cluster which is still not deleted and just terminated with new cluster under same name, which makes the notebook run under work cluster which is terminated.

Solution: detach old cluster from notebook and reload the web_page, you can see only new cluster but not both at a time as below. Now attach the new cluster and run your notebook.

detach old cluster

reload the page, you can see only new cluster

Now attach the new cluster and run your notebook.


Lokesh Manne