From f73c6648e2123313ce5f5cba16828cbe28c7494a Mon Sep 17 00:00:00 2001 From: Spencer <82179552+spenny-jay@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:57:04 -0400 Subject: [PATCH] Update bootstrap-al2023.sh --- .../src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh b/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh index e23b527ab..9dc77ab3a 100644 --- a/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh +++ b/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh @@ -7,7 +7,7 @@ # This means the default cert bundle file is double loaded causing a cold start performance hit. This logic # sets the SSL_CERT_FILE to an empty file if SSL_CERT_FILE hasn't been explicitly # set. This avoid the double load of the default cert bundle file. -if [ -z "${SSL_CERT_FILE}"]; then +if [ -z "${SSL_CERT_FILE}" ]; then export SSL_CERT_FILE="/var/runtime/empty-certificates.crt" fi @@ -129,4 +129,4 @@ else else exec -- "${AWS_LAMBDA_EXEC_WRAPPER}" "${DOTNET_BIN}" "${DOTNET_EXEC}" "${DOTNET_ARGS[@]}" fi -fi \ No newline at end of file +fi