We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d45623 commit 1694512Copy full SHA for 1694512
runtime/bootstrap
@@ -6,7 +6,7 @@
6
set -eo pipefail
7
8
# Initialization - load function handler
9
-source $LAMBDA_TASK_ROOT/"$(echo $HANDLER | cut -d. -f1).sh"
+source $LAMBDA_TASK_ROOT/"$(echo $_HANDLER | cut -d. -f1).sh"
10
11
# Processing
12
while true
@@ -19,7 +19,7 @@ do
19
REQUEST_ID=$(grep -Fi Lambda-Runtime-Aws-Request-Id "$HEADERS" | tr -d '[:space:]' | cut -d: -f2)
20
21
# Run the handler function from the script
22
- RESPONSE=$($(echo "$HANDLER" | cut -d. -f2) "$EVENT_DATA")
+ RESPONSE=$($(echo "$_HANDLER" | cut -d. -f2) "$EVENT_DATA")
23
24
25
echo "$RESPONSE" | curl -sS -X POST \
0 commit comments