diff --git a/scripts/variantstore/wdl/extract/run_in_hail_cluster.py b/scripts/variantstore/wdl/extract/run_in_hail_cluster.py index 560c24801c0..855e96ffefe 100644 --- a/scripts/variantstore/wdl/extract/run_in_hail_cluster.py +++ b/scripts/variantstore/wdl/extract/run_in_hail_cluster.py @@ -89,7 +89,12 @@ def run_in_cluster(cluster_name, account, worker_machine_type, region, gcs_proje info(f'Stopping cluster: {cluster_name}') delete_cmd = unwrap(f""" - gcloud dataproc clusters delete --project {gcs_project} --region {region} --account {account} {cluster_name} + gcloud dataproc clusters delete + --project {gcs_project} + --region {region} + --account {account} + --quiet + {cluster_name} """)