From 5fdbb9e5802ce37529446ccf544ec169be2830a7 Mon Sep 17 00:00:00 2001 From: tomflexcompute Date: Mon, 10 Jul 2023 11:36:36 -0400 Subject: [PATCH] Added log info for using web.delete() --- tidy3d/web/webapi.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tidy3d/web/webapi.py b/tidy3d/web/webapi.py index 61c0f79d4..4307081a4 100644 --- a/tidy3d/web/webapi.py +++ b/tidy3d/web/webapi.py @@ -387,6 +387,10 @@ def monitor_preprocess() -> None: # verbose case, update progressbar console.log("running solver") + console.log( + "To cancel the simulation, use 'web.delete(task_id)' or delete the task in the web" + " UI. Terminating the Python script will not stop the job running on the cloud." + ) with Progress(console=console) as progress: pbar_pd = progress.add_task("% done", total=100)