From 690d39c88402797b443866b18f5c9269ee16e5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mico=20B=C3=B8je?= <38038573+mico-boje@users.noreply.github.com> Date: Thu, 14 May 2020 08:35:57 +0200 Subject: [PATCH] Update sample_settings.py.template --- samples/sample_settings.py.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/sample_settings.py.template b/samples/sample_settings.py.template index be26923..06d5108 100644 --- a/samples/sample_settings.py.template +++ b/samples/sample_settings.py.template @@ -19,7 +19,7 @@ SUBSCRIPTION_ID = '00000000-0000-0000-0000-000000000000' # The name for the cluster you are creating. The name must be unique, 59 characters or less, # and can contain letters, numbers, and hyphens (but the first and last character must be a letter or number). # Required by all the samples. -CLUSTER_NAME = 'hdisamplecluster' + random.randint(1000, 10000) +CLUSTER_NAME = 'hdisamplecluster' + str(random.randint(1000, 10000)) # Choose a region. i.e. "East US 2". # Required by all the samples. @@ -61,7 +61,7 @@ BLOB_ENDPOINT_SUFFIX = '.blob.core.windows.net' # Blob storage account container name # Required by all the samples except `create_hadoop_cluster_with_adls_gen2_sample` -CONTAINER_NAME = 'container' + random.randint(1000, 10000) +CONTAINER_NAME = 'container' + str(random.randint(1000, 10000)) # Dfs Storage endpoint suffix. # Required by `create_hadoop_cluster_with_adls_gen2_sample` @@ -102,4 +102,4 @@ DOMAIN_USER_NAME = 'sample.user@sampledomain.onmicrosoft.com' # Cluster access group # Required by `create_esp_cluster_sample`. -CLUSTER_ACCESS_GROUP = 'Sample Group' \ No newline at end of file +CLUSTER_ACCESS_GROUP = 'Sample Group'