From f3affebf141984511ef8530c1511b8c963f752d8 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Wed, 18 Feb 2026 07:27:28 +0000 Subject: [PATCH 1/3] chore: Migrate gsutil usage to gcloud storage --- src/benchmark_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmark_utils.py b/src/benchmark_utils.py index 1e9719a5..871ae047 100644 --- a/src/benchmark_utils.py +++ b/src/benchmark_utils.py @@ -206,7 +206,7 @@ def upload_to_storage(trace_dir: str, local_file: str): if trace_dir.startswith("gs://"): # Google Cloud Storage (GCS) try: subprocess.run( - ["gsutil", "cp", "-r", local_file, trace_dir], + ["gcloud", "storage", "cp", "--recursive", local_file, trace_dir], check=True, capture_output=True, ) From e438a00af1c4fe23108e02cd17ecea88766a00bc Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Wed, 18 Feb 2026 07:45:58 +0000 Subject: [PATCH 2/3] chore: update --- Ironwood/src/benchmark_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ironwood/src/benchmark_utils.py b/Ironwood/src/benchmark_utils.py index ccd4f4c1..69779189 100644 --- a/Ironwood/src/benchmark_utils.py +++ b/Ironwood/src/benchmark_utils.py @@ -741,7 +741,7 @@ def upload_to_storage(trace_dir: str, local_file: str): if trace_dir.startswith("gs://"): # Google Cloud Storage (GCS) try: subprocess.run( - ["gsutil", "cp", "-r", local_file, trace_dir], + ["gcloud", "storage", "cp", "-r", local_file, trace_dir], check=True, capture_output=True, ) From cd6901c9241d1d6b74317e8ae61df17d07088c57 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Wed, 18 Feb 2026 13:27:29 +0530 Subject: [PATCH 3/3] Update benchmark_utils.py --- Ironwood/src/benchmark_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ironwood/src/benchmark_utils.py b/Ironwood/src/benchmark_utils.py index 69779189..f3fa995d 100644 --- a/Ironwood/src/benchmark_utils.py +++ b/Ironwood/src/benchmark_utils.py @@ -741,7 +741,7 @@ def upload_to_storage(trace_dir: str, local_file: str): if trace_dir.startswith("gs://"): # Google Cloud Storage (GCS) try: subprocess.run( - ["gcloud", "storage", "cp", "-r", local_file, trace_dir], + ["gcloud", "storage", "cp", "--recursive", local_file, trace_dir], check=True, capture_output=True, )