Skip to content

Commit

Permalink
Update response message in Lambda handler
Browse files Browse the repository at this point in the history
The text returned by the Lambda handler's response has been updated for clarity. This change enhances the demonstrative impact of the message, improving user experience.
  • Loading branch information
timam committed May 16, 2024
1 parent d6a4818 commit 5c78685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/lambda/src/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
exports.handler = async (event) => {
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!!')
body: JSON.stringify('Hello from Lambda!!!')
};
return response;
};

0 comments on commit 5c78685

Please sign in to comment.