Skip to content

Commit 48b7926

Browse files
demartinofralukeseawalker
authored andcommitted
Remove HIT references from customer facing messages
Signed-off-by: Francesco De Martino <[email protected]>
1 parent 15b421b commit 48b7926

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/pcluster/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ def _upload_hit_resources(bucket_name, pcluster_config, json_params):
8888
LOGGER.error("Error when uploading cluster configuration file to bucket %s: %s", bucket_name, client_error)
8989
raise
9090
except Exception as e:
91-
LOGGER.error("Error when generating hit template from url %s: %s", hit_template_url, e)
91+
LOGGER.error("Error when generating CloudFormation template from url %s: %s", hit_template_url, e)
9292
raise
9393

9494
try:
9595
s3_client.put_object(
9696
Bucket=bucket_name, Body=rendered_template, Key="templates/compute-fleet-hit-substack.rendered.cfn.yaml"
9797
)
9898
except Exception as e:
99-
LOGGER.error("Error when uploading hit template to bucket %s: %s", bucket_name, e)
99+
LOGGER.error("Error when uploading CloudFormation template to bucket %s: %s", bucket_name, e)
100100
raise
101101

102102

0 commit comments

Comments
 (0)