Skip to content

Commit ffa8dde

Browse files
committed
Add comment to clarify url transformations
Signed-off-by: Francesco De Martino <[email protected]>
1 parent 2befa52 commit ffa8dde

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

cli/pcluster/resources/batch/custom_resources_code/crhelper/utils.py

+2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ def _send_response(response_url, response_body):
2222
logger.debug("CFN response URL: {}".format(response_url))
2323
logger.debug(json_response_body)
2424
headers = {'content-type': '', 'content-length': str(len(json_response_body))}
25+
# This function returns a 5-tuple: (addressing scheme, network location, path, query, fragment identifier)
2526
split_url = urlsplit(response_url)
2627
host = split_url.netloc
28+
# Building the url without scheme and hostname
2729
url = urlunsplit(("", "", *split_url[2:]))
2830
while True:
2931
try:

cli/pcluster/resources/batch/custom_resources_code/send_build_notification.py

+2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ def handler(event, context):
3131
print("Notification URL: %s" % notification_url)
3232
print("Notification data: %s" % data)
3333

34+
# This function returns a 5-tuple: (addressing scheme, network location, path, query, fragment identifier)
3435
split_url = urlsplit(notification_url)
3536
host = split_url.netloc
37+
# Building the url without scheme and hostname
3638
url = urlunsplit(("", "", *split_url[2:]))
3739
while True:
3840
try:

0 commit comments

Comments
 (0)