From c464026c427e505a08d9fbae7bd15b612c3939c3 Mon Sep 17 00:00:00 2001 From: Cuong Nguyen <128072568+can-anyscale@users.noreply.github.com> Date: Wed, 28 Jun 2023 10:00:35 -0700 Subject: [PATCH] [ci] Add region name for boto3 erc client (#36892) Signed-off-by: can --- release/ray_release/byod/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/ray_release/byod/build.py b/release/ray_release/byod/build.py index fe21de9b4166..989a24b793d7 100644 --- a/release/ray_release/byod/build.py +++ b/release/ray_release/byod/build.py @@ -203,7 +203,7 @@ def _byod_image_exist(test: Test, base_image: bool = True) -> bool: """ if os.environ.get("BYOD_NO_CACHE", False): return False - client = boto3.client("ecr") + client = boto3.client("ecr", region_name="us-west-2") image_tag = ( test.get_byod_base_image_tag() if base_image else test.get_byod_image_tag() )