From c561619c7e063c4436e96c50470135384480f09b Mon Sep 17 00:00:00 2001 From: Doyoung Kim Date: Wed, 21 Aug 2024 04:42:43 +0000 Subject: [PATCH] nit --- sky/provision/azure/config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sky/provision/azure/config.py b/sky/provision/azure/config.py index fa92a9f497a..7d88c9707e4 100644 --- a/sky/provision/azure/config.py +++ b/sky/provision/azure/config.py @@ -20,6 +20,7 @@ _DEPLOYMENT_NAME = 'skypilot-config' _LEGACY_DEPLOYMENT_NAME = 'ray-config' _RESOURCE_GROUP_WAIT_FOR_DELETION_TIMEOUT = 480 # 8 minutes +_CLUSTER_ID = '{cluster_name_on_cloud}-{unique_id}' def get_azure_sdk_function(client: Any, function_name: str) -> Callable: @@ -46,7 +47,9 @@ def get_cluster_id(resource_group: str, cluster_name_on_cloud: str): # We use the cluster name + resource group hash as the # unique ID for the cluster, as we need to make sure that # the deployments have unique names during failover. - cluster_id = f'{cluster_name_on_cloud}-{unique_id}' + cluster_id = _CLUSTER_ID.format( + cluster_name_on_cloud=cluster_name_on_cloud, + unique_id=unique_id) return cluster_id